stdio: puts() and vprintf()
[neatlibc.git] / sys / types.h
blob96fa5b2f983b06d5dd72ea24a7df5e819ba940c8
1 #ifndef _SYS_TYPES_H
2 #define _SYS_TYPES_H
4 #include <inttypes.h>
6 typedef uint32_t dev_t;
7 typedef uint16_t gid_t;
8 typedef uint16_t mode_t;
9 typedef uint16_t nlink_t;
10 typedef uint16_t uid_t;
12 typedef int32_t pid_t;
13 typedef long ssize_t;
14 typedef long time_t;
15 typedef long useconds_t;
17 typedef signed long off_t;
18 typedef signed long ino_t;
19 typedef uint32_t uid32_t;
20 typedef uint32_t gid32_t;
21 typedef long fpos_t;
23 #endif