summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-07-11 17:22:15 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-07-11 17:22:15 +0000
commitd6697c60c378cbb4343abbd42e966366b84a2fb1 (patch)
tree51530112c2b86e0227813cfab68d0d523db09a11 /src
parent2b6236d156b394227e41b0d664cf600b69db9403 (diff)
downloadcoreutils-d6697c60c378cbb4343abbd42e966366b84a2fb1.tar.xz
Assume <dirent.h> exists, since gnulib assumes this now as well.
Diffstat (limited to 'src')
-rw-r--r--src/system.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/system.h b/src/system.h
index 6fe212a14..423f0fa8b 100644
--- a/src/system.h
+++ b/src/system.h
@@ -224,15 +224,9 @@ initialize_exit_failure (int status)
# define O_TEXT 0
#endif
-#if HAVE_DIRENT_H
-# include <dirent.h>
-# ifndef _D_EXACT_NAMLEN
-# define _D_EXACT_NAMLEN(dp) strlen ((dp)->d_name)
-# endif
-#else
-# define dirent direct
-# define _D_EXACT_NAMLEN(dp) (dp)->d_namlen
-# include <ndir.h>
+#include <dirent.h>
+#ifndef _D_EXACT_NAMLEN
+# define _D_EXACT_NAMLEN(dp) strlen ((dp)->d_name)
#endif
enum