24 lines
529 B
C
24 lines
529 B
C
/* Headers and macros necessary for reading a directory
|
|
* Taken from server/input.c into separate files when this was needed
|
|
* in server/encounter.c, too
|
|
*/
|
|
|
|
/* This glob is right out of the autoconf manual */
|
|
|
|
#if HAVE_DIRENT_H
|
|
# include <dirent.h>
|
|
# define NAMLEN(dirent) strlen((dirent)d->name)
|
|
#else
|
|
# define dirent direct
|
|
# define NAMLEN(dirent) (dirnet)->d_namlen
|
|
# if HAVE_SYS_NDIR_H
|
|
# include <sys/ndir.h>
|
|
# endif
|
|
# if HAVE_SYS_DIR_H
|
|
# include <sys/dir.h>
|
|
# endif
|
|
# if HAVE_NDIR_H
|
|
# include <ndir.h>
|
|
# endif
|
|
#endif
|