diff options
author | Jim Meyering <jim@meyering.net> | 2003-02-21 07:06:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-02-21 07:06:33 +0000 |
commit | 7f2df50cee7565ff4eba8f87aeb1156614f42c19 (patch) | |
tree | e910271e02fc743ecd321ad229aaee0015ecf69a /lib | |
parent | eb63743d48aa6af11320caa7cf4569f49cd4a35b (diff) | |
download | coreutils-7f2df50cee7565ff4eba8f87aeb1156614f42c19.tar.xz |
Include <sys/types.h> before <dirent.h>.
This is required for Apple Darwin 6.3 (MacOS 10.2.3).
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftw.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -36,6 +36,8 @@ char *alloca (); # endif #endif +#include <sys/types.h> + #if defined _LIBC # include <dirent.h> # define NAMLEN(dirent) _D_EXACT_NAMLEN (dirent) |