diff options
author | Jim Meyering <jim@meyering.net> | 2002-06-01 09:38:41 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-06-01 09:38:41 +0000 |
commit | 3b96dac1d7f9e27be0273da611a2e56a074d3aca (patch) | |
tree | 4d4e417502e04fa4818aefed1ccc3fc9a51e0f74 /src | |
parent | c96356eba90f197a0c819f4d70e40f4065e9e32d (diff) | |
download | coreutils-3b96dac1d7f9e27be0273da611a2e56a074d3aca.tar.xz |
Remove use of D_TYPE_IN_DIRENT, now that that symbol has been renamed.
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -158,11 +158,9 @@ int rpl_lstat PARAMS((const char *, struct stat *)); # define lstat(Name, Stat_buf) rpl_lstat(Name, Stat_buf) #endif -#if D_TYPE_IN_DIRENT && defined DTTOIF -# define HAVE_STRUCT_DIRENT_D_TYPE 1 +#if HAVE_STRUCT_DIRENT_D_TYPE && defined DTTOIF # define DT_INIT(Val) = Val #else -# define HAVE_STRUCT_DIRENT_D_TYPE 0 # define DT_INIT(Val) /* empty */ #endif |