diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-04 11:38:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-04 11:38:37 +0000 |
commit | 2ada37fa94de221ef53ace84515a5e8b9518eedc (patch) | |
tree | df5670aef3a514afa9c65a27c71b17f232f93b12 | |
parent | aae3b8e336bdb1cad6884b58945ab381e23c5267 (diff) | |
download | coreutils-2ada37fa94de221ef53ace84515a5e8b9518eedc.tar.xz |
Include <sys/types.h> unconditionally, instead of
having it depend on HAVE_SYS_TYPES_H.
-rw-r--r-- | lib/xreadlink.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/xreadlink.c b/lib/xreadlink.c index e4c565f8b..f5cce16eb 100644 --- a/lib/xreadlink.c +++ b/lib/xreadlink.c @@ -30,9 +30,7 @@ extern int errno; #endif #include <limits.h> -#if HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif +#include <sys/types.h> #if HAVE_STDLIB_H # include <stdlib.h> #endif |