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
Makefile cleaup
[thunix.git]
/
include
/
stdint.h
blob
085a969a73e470491e6e7c45b6b64bceaae64755
1
#ifndef STDINT_H
2
#define STDINT_H 1
3
4
5
typedef
signed char int8_t
;
6
typedef
short int int16_t
;
7
typedef
int int32_t
;
8
9
typedef
unsigned char uint8_t
;
10
typedef
unsigned short int uint16_t
;
11
typedef
unsigned int uint32_t
;
12
typedef
unsigned long long uint64_t
;
13
14
15
#endif
/* stdint.h */