1 #ifndef TEST_STDINT_H
2 #define TEST_STDINT_H
3 
4 #ifndef _MSC_VER
5 
6 #include <stdint.h>
7 
8 #else
9 
10 typedef signed char      int8_t  ;
11 typedef unsigned char    uint8_t ;
12 typedef short            int16_t ;
13 typedef unsigned short   uint16_t;
14 typedef int              int32_t ;
15 typedef unsigned int     uint32_t;
16 typedef __int64          int64_t ;
17 typedef unsigned __int64 uint64_t;
18 typedef short            int_least16_t;
19 
20 #endif
21 
22 #endif //TEST_STDINT_H
23