deepstone

view src/inttypes.h @ 23:4ad71b558ab2

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 21 Sep 2013 19:09:03 +0300
parents
children ad6b185723cd
line source
1 #ifndef INT_TYPES_H_
2 #define INT_TYPES_H_
4 typedef char int8_t;
5 typedef short int16_t;
6 typedef long int32_t;
8 typedef unsigned char uint8_t;
9 typedef unsigned short uint16_t;
10 typedef unsigned long uint32_t;
12 #endif /* INT_TYPES_H_ */