use stdint types

This commit is contained in:
Linus Unnebäck 2015-12-13 19:01:54 +01:00
parent 0a86b8c946
commit a613de410a
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;