git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4420 fc73d0e0-1445-4013-8a0c-d673dee63da5

This commit is contained in:
Spoike 2013-07-13 19:56:18 +00:00
parent 520ce49f9e
commit 902a5adb26
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
typedef unsigned char uint8_t;
typedef signed char int8_t;
typedef unsigned short uint16_t;
typedef signed short int16_t;
typedef unsigned int uint32_t;
typedef signed int int32_t;
typedef unsigned long long uint64_t;
typedef signed long long int64_t;
#define inline _inline

View File

@ -0,0 +1 @@
#define UINT64_C(n) n##ull