Moved toward elimination of shared library usages.

This commit is contained in:
2015-09-06 21:20:19 -05:00
parent d91d9370eb
commit 800d321004
4 changed files with 25 additions and 6 deletions
+8
View File
@@ -15,10 +15,18 @@ typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef unsigned uint_t;
typedef long long int64_t;
typedef unsigned long long uint64_t;
#ifdef _LP64
typedef uint64_t size_t;
#elif _LP32
typedef uint32_t size_t;
#endif
}
#endif