Added README file
[swift-upb.git] / compat / stdint.h
1 /*
2  * Written by Arno Bakker
3  * see LICENSE.txt for license information
4  */
5
6 #ifndef STDINT_H_
7 #define STDINT_H_
8
9 typedef unsigned char uint8_t;
10 typedef signed char int8_t;
11 typedef unsigned short uint16_t;
12 typedef short int16_t;
13 typedef unsigned int uint32_t;
14 typedef int int32_t;
15 typedef __int64 int64_t;
16 typedef unsigned __int64 uint64_t;
17
18 #endif /* STDINT_H_ */