blob: 2d7b5ad16bb8a98fa8232cac62759cfdf5d9e481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __STD_INT_H_
#define __STD_INT_H_
#ifdef _MSC_VER
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef signed long int int32_t;
typedef unsigned long int uint32_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif
#endif
|