home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * SYS/STAT.H
- */
-
- #ifndef _SYS_STAT_H
- #define _SYS_STAT_H
-
- #ifndef LIBRARIES_DOS_H
- #include <libraries/dos.h>
- #endif
-
- #define S_IFMT 0xF0000
- #define S_IFREG 0x10000
- #define S_IFDIR 0x20000
- #define S_IFLNK 0x30000
- #define S_IFCHR 0x40000
- #define S_IFBLK 0x50000
-
- struct stat {
- long st_mode;
- long st_size;
- long st_ctime;
- };
-
- #endif
-
-