diff options
author | Christopher Faylor <me@cgf.cx> | 2005-08-12 02:39:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-08-12 02:39:13 +0000 |
commit | 1cd065837c6698b0e3dba6977b47061f8419dfba (patch) | |
tree | a7ff66c35914ad5285d42712669d75ee6c3af394 /winsup/cygwin/include/sys/dirent.h | |
parent | b4ec1841997ed8ddfba41818e4806513d8da433d (diff) | |
download | cygnal-1cd065837c6698b0e3dba6977b47061f8419dfba.tar.gz cygnal-1cd065837c6698b0e3dba6977b47061f8419dfba.tar.bz2 cygnal-1cd065837c6698b0e3dba6977b47061f8419dfba.zip |
white space
Diffstat (limited to 'winsup/cygwin/include/sys/dirent.h')
-rw-r--r-- | winsup/cygwin/include/sys/dirent.h | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/winsup/cygwin/include/sys/dirent.h b/winsup/cygwin/include/sys/dirent.h index 1b16bc3d5..996b1ee33 100644 --- a/winsup/cygwin/include/sys/dirent.h +++ b/winsup/cygwin/include/sys/dirent.h @@ -87,30 +87,29 @@ int scandir (const char *__dir, int alphasort (const struct dirent **__a, const struct dirent **__b); /* File types for `d_type'. */ enum - { - DT_UNKNOWN = 0, +{ + DT_UNKNOWN = 0, # define DT_UNKNOWN DT_UNKNOWN - DT_FIFO = 1, + DT_FIFO = 1, # define DT_FIFO DT_FIFO - DT_CHR = 2, + DT_CHR = 2, # define DT_CHR DT_CHR - DT_DIR = 4, + DT_DIR = 4, # define DT_DIR DT_DIR - DT_BLK = 6, + DT_BLK = 6, # define DT_BLK DT_BLK - DT_REG = 8, + DT_REG = 8, # define DT_REG DT_REG - DT_LNK = 10, + DT_LNK = 10, # define DT_LNK DT_LNK - DT_SOCK = 12, + DT_SOCK = 12, # define DT_SOCK DT_SOCK - DT_WHT = 14 + DT_WHT = 14 # define DT_WHT DT_WHT - }; +}; /* Convert between stat structure types and directory types. */ -# define IFTODT(mode) (((mode) & 0170000) >> 12) +# define IFTODT(mode) (((mode) & 0170000) >> 12) # define DTTOIF(dirtype) ((dirtype) << 12) #endif /* _POSIX_SOURCE */ - -#endif +#endif /*_SYS_DIRENT_H*/ |