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 | *** empty log message *** (diff) | |
| download | coreutils-9ce9757db1089c909d5819cba215ccc88922c6da.tar.gz coreutils-9ce9757db1089c909d5819cba215ccc88922c6da.zip | |
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" |
