Subversion Repositories tendra.SVN

Rev

Rev 77 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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