Searched refs:_IFMT (Results 1 - 1 of 1) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/libbc/inc/include/sys/
H A Dstat.h62 #define _IFMT 0170000 /* type of file */ macro
81 #define S_IFMT _IFMT
104 #define S_ISBLK(m) (((m)&_IFMT) == _IFBLK)
105 #define S_ISCHR(m) (((m)&_IFMT) == _IFCHR)
106 #define S_ISDIR(m) (((m)&_IFMT) == _IFDIR)
107 #define S_ISFIFO(m) (((m)&_IFMT) == _IFIFO)
108 #define S_ISREG(m) (((m)&_IFMT) == _IFREG)
110 #define S_ISLNK(m) (((m)&_IFMT) == _IFLNK)
111 #define S_ISSOCK(m) (((m)&_IFMT) == _IFSOCK)

Completed in 107 milliseconds