types.h (422B)
1 #ifndef __TYPES_H__ 2 #define __TYPES_H__ 3 4 typedef int ssize_t; 5 typedef unsigned int size_t; 6 typedef int pid_t; 7 typedef long int time_t; 8 typedef unsigned short uid_t; 9 typedef unsigned short gid_t; 10 typedef unsigned short dev_t; 11 typedef unsigned short ino_t; 12 typedef unsigned long int mode_t; 13 typedef long int off_t; 14 typedef short int nlink_t; 15 typedef unsigned long int blksize_t; 16 typedef unsigned long int blkcnt_t; 17 18 #endif 19