QDNix
Quick’n’dirty *NIX
types.h
1 #ifndef _SYS_TYPES_H
2 # define _SYS_TYPES_H 1
3 
4 /* https://pubs.opengroup.org/onlinepubs/009696899/basedefs/sys/types.h.html */
5 
6 typedef int mode_t;
7 typedef int ino_t;
8 typedef int nlink_t;
9 typedef int uid_t;
10 typedef int gid_t;
11 typedef int uid_t;
12 typedef int dev_t;
13 
14 typedef unsigned int size_t;
15 
16 #endif /* !_SYS_TYPES_H */