1 /* Imitation sys/types.h. */ 2 3 #ifndef __SYS_TYPES_H__ 4 #define __SYS_TYPES_H__ 5 6 #include <Types.h> 7 8 typedef short dev_t; 9 typedef short ino_t; 10 typedef unsigned short mode_t; 11 typedef unsigned short uid_t; 12 typedef unsigned short gid_t; 13 typedef long off_t; 14 15 #endif /* __SYS_TYPES_H__ */ 16