diff options
author | Roland McGrath <roland@redhat.com> | 1993-04-12 20:51:44 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-04-12 20:51:44 +0000 |
commit | d8b7640a817760d0f0cd5f595d7422119a2dfcf4 (patch) | |
tree | ba0d8feb49e10cc675193c190a449ab793c6f5cc /dir.c | |
parent | 8c01d0459a99d9e5a594c5c2d02fff68719ad1c9 (diff) | |
download | gunmake-d8b7640a817760d0f0cd5f595d7422119a2dfcf4.tar.gz |
Formerly dir.c.~11~
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 31 |
1 files changed, 12 insertions, 19 deletions
@@ -18,33 +18,26 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "make.h" -#if defined (USGr3) && !defined (DIRENT) -#define DIRENT -#endif /* USGr3 */ -#if defined (Xenix) && !defined (SYSNDIR) -#define SYSNDIR -#endif /* Xenix */ - -#if defined (POSIX) || defined (DIRENT) || defined (__GNU_LIBRARY__) +#if defined (POSIX) || defined (DIRENT) || defined (__GNU_LIBRARY__) #include <dirent.h> #ifndef __GNU_LIBRARY__ #define D_NAMLEN(d) strlen((d)->d_name) -#else +#else /* GNU C library. */ #define D_NAMLEN(d) ((d)->d_namlen) -#endif -#else /* not POSIX or DIRENT */ +#endif /* Not GNU C library. */ +#else /* Not POSIX or DIRENT. */ #define direct dirent #define D_NAMLEN(d) ((d)->d_namlen) -#if defined (USG) && !defined (sgi) -#if defined (SYSNDIR) +#ifdef SYSNDIR #include <sys/ndir.h> -#else /* SYSNDIR */ -#include "ndir.h" -#endif /* not SYSNDIR */ -#else /* not USG */ +#endif /* SYSNDIR */ +#ifdef SYSDIR #include <sys/dir.h> -#endif /* USG */ -#endif /* POSIX or DIRENT or __GNU_LIBRARY__ */ +#endif /* SYSDIR */ +#ifdef NDIR +#include <ndir.h> +#endif /* NDIR */ +#endif /* POSIX or DIRENT or __GNU_LIBRARY__. */ #if defined (POSIX) && !defined (__GNU_LIBRARY__) /* Posix does not require that the d_ino field be present, and some |