summaryrefslogtreecommitdiff
path: root/include/sys/types.h
blob: bfeefb4e744320f70a9dc3420b6d080e7fc2cbe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TYPES_H
#define TYPES_H
#include <typedefs.h>
typedef int time_t;
typedef int pid_t;
typedef u16 dev_t;
typedef u16 uid_t;
typedef u16 ino_t;
typedef unsigned int mode_t;
typedef u16 nlink_t;
typedef i32 gid_t;
typedef u64 off_t;
typedef i64 blksize_t;
typedef i64 blkcnt_t;
typedef u32 suseconds_t;
#endif