diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-17 18:39:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-17 18:39:20 +0000 |
commit | 9ce9757db1089c909d5819cba215ccc88922c6da (patch) | |
tree | 3d52b180be2189750f3df97703fb3f8efb2249a2 /src/readlink.c | |
parent | 2e17bffdb5e5314f898f6a151fdd5ae5c6cfc6b1 (diff) | |
download | coreutils-9ce9757db1089c909d5819cba215ccc88922c6da.tar.xz |
Include sys/types.h before system.h (because
the latter includes sys/stat.h). Required on Ultrix 4.3.
Diffstat (limited to 'src/readlink.c')
-rw-r--r-- | src/readlink.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/readlink.c b/src/readlink.c index be525564a..6e38f0df1 100644 --- a/src/readlink.c +++ b/src/readlink.c @@ -23,6 +23,7 @@ #include <unistd.h> #include <limits.h> #include <getopt.h> +#include <sys/types.h> #include "system.h" #include "canonicalize.h" |