summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-17 18:39:20 +0000
committerJim Meyering <jim@meyering.net>2003-06-17 18:39:20 +0000
commit9ce9757db1089c909d5819cba215ccc88922c6da (patch)
tree3d52b180be2189750f3df97703fb3f8efb2249a2 /src
parent2e17bffdb5e5314f898f6a151fdd5ae5c6cfc6b1 (diff)
downloadcoreutils-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')
-rw-r--r--src/readlink.c1
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"