1 /* Imitation sys/stat.h. */
30 #define S_IFMT 0170000L
31 #define S_IFDIR 0040000L
32 #define S_IFREG 0100000L
37 #define S_IFIFO 010000 /* FIFO special */
38 #define S_IFCHR 020000 /* character special */
39 #define S_IFBLK 030000 /* block special */
41 int stat (char *path
, struct stat
*buf
);
42 int fstat (int fd
, struct stat
*buf
);
44 #endif /* __SYS_STAT_H___ */