Merge pull request #2480 from LinusU/proper-types

use stdint types
This commit is contained in:
Ted John 2015-12-13 18:24:12 +00:00
commit 7007aef9cb
1 changed files with 8 additions and 8 deletions

View File

@ -41,14 +41,14 @@
#include <time.h>
#endif
typedef signed char sint8;
typedef signed short sint16;
typedef signed long sint32;
typedef signed long long sint64;
typedef unsigned char uint8;
typedef unsigned short uint16;
typedef unsigned long uint32;
typedef unsigned long long uint64;
typedef int8_t sint8;
typedef int16_t sint16;
typedef int32_t sint32;
typedef int64_t sint64;
typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
typedef uint64_t uint64;
typedef char utf8;
typedef utf8* utf8string;