Subversion Repositories tendra.SVN

Rev

Rev 75 | Rev 80 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
75 7u83 1
#ifndef __TENDRA_SYS_TYPES_H
2
#define __TENDRA_SYS_TYPES_H
74 7u83 3
 
4
typedef int uid_t;
5
typedef int gid_t;
6
typedef int ino_t;
7
typedef int mode_t;
8
typedef int off_t;
9
typedef int pid_t;
10
typedef int nlink_t;
11
typedef int dev_t;
77 7u83 12
typedef long key_t;
74 7u83 13
 
14
typedef int time_t;
15
 
75 7u83 16
typedef unsigned int size_t;
17
typedef	long ssize_t;
18
 
77 7u83 19
typedef int int32_t;
20
typedef unsigned int uint32_t; 
21
 
22
typedef short int16_t;
23
typedef unsigned short uint16_t; 
24
 
25
typedef char int8_t;
26
typedef unsigned char uint8_t;
27
 
28
typedef int  nl_item;
29
 
30
 
75 7u83 31
#endif