diff options
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index 2429e80a6..86287a170 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -97,11 +97,7 @@ #endif -#if defined (__MINGW32__) || defined (_MSC_VER) || defined (__BORLANDC__) -# include "win32-dirent.h" -# define NAMLEN(dirent) strlen((dirent)->d_name) -/* The following bits are per AC_HEADER_DIRENT doco in the autoconf manual */ -#elif HAVE_DIRENT_H +#if HAVE_DIRENT_H # include <dirent.h> # define NAMLEN(dirent) strlen((dirent)->d_name) #else |