Browse Source

Dop not restrict the IFTODT() and DTTOIF() macros when
_DIRENT_HAVE_D_TYPE is not defined.
-Erik

Eric Andersen 21 years ago
parent
commit
abc2175734
1 changed files with 0 additions and 2 deletions
  1. 0 2
      include/dirent.h

+ 0 - 2
include/dirent.h

@@ -117,12 +117,10 @@ enum
 # define DT_WHT		DT_WHT
   };
 
-#ifdef _DIRENT_HAVE_D_TYPE
 /* Convert between stat structure types and directory types.  */
 # define IFTODT(mode)	(((mode) & 0170000) >> 12)
 # define DTTOIF(dirtype)	((dirtype) << 12)
 #endif
-#endif
 
 
 /* This is the data type of directory stream objects.