diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-16 22:02:00 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-16 22:02:00 +0000 |
commit | 3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9 (patch) | |
tree | 43a618cb2507489be74cf3b52a18d4be5110fe58 /local.h | |
parent | tgetstr("Km", &pt) cannot be used to detect is_xterm (diff) | |
download | w3m-3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9.tar.gz w3m-3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9.zip |
follow autoconf conventions, #include cleanups
Diffstat (limited to '')
-rw-r--r-- | local.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -6,13 +6,13 @@ #define LOCAL_H #include <sys/types.h> -#ifdef DIRENT +#ifdef HAVE_DIRENT_H #include <dirent.h> typedef struct dirent Directory; -#else /* not DIRENT */ +#else /* not HAVE_DIRENT_H */ #include <sys/dir.h> typedef struct direct Directory; -#endif /* not DIRENT */ +#endif /* not HAVE_DIRENT_H */ #include <sys/stat.h> #ifndef S_IFMT @@ -32,13 +32,13 @@ typedef struct direct Directory; #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) #endif /* not S_ISDIR */ -#ifdef READLINK +#ifdef HAVE_READLINK #ifndef S_IFLNK #define S_IFLNK 0120000 #endif /* not S_IFLNK */ #ifndef S_ISLNK #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) #endif /* not S_ISLNK */ -#endif /* not READLINK */ +#endif /* not HAVE_READLINK */ #endif /* not LOCAL_H */ |