Implement user space's printf stuff
[thunix.git] / include / stdint.h
blob085a969a73e470491e6e7c45b6b64bceaae64755
1 #ifndef STDINT_H
2 #define STDINT_H 1
5 typedef signed char int8_t;
6 typedef short int int16_t;
7 typedef int int32_t;
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;
15 #endif /* stdint.h */