blob: 446b0bbea1b3e347917c721afb4d9d06ae4761f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef H_COMPAT__H
#define H_COMPAT__H
typedef unsigned char byte;
//typedef unsigned char uchar;
typedef char int8;
typedef unsigned char uint8;
typedef short int16;
typedef unsigned short uint16;
typedef int int32;
typedef unsigned int uint32;
typedef long long int64;
typedef unsigned long long uint64;
#endif //H_COM_TYPES__H
|