repo.or.cz
/
thunix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kbd: use a better get_key method
[thunix.git]
/
include
/
types.h
blob
5b1005bb244b45e55a811d190f75781ac94faea4
1
#ifndef TYPES_H
2
#define TYPES_H
3
4
typedef
int size_t
;
5
6
#ifndef NULL
7
#define NULL ( (void*) 0)
8
#endif
9
10
typedef
unsigned int
__u32
;
11
typedef
int
__s32
;
12
typedef
unsigned short
__u16
;
13
typedef
short
__s16
;
14
typedef
unsigned char
__u8
;
15
16
17
#endif
/* _TYPES_H */