This commit is contained in:
Bucky Kittinger
2019-02-20 18:14:49 -05:00
parent ab09461e6e
commit 1fe3e67a0f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
#ifdef EOSIO_NATIVE
#define _Addr long long
#define __INTPTR_WIDTH__ 8
#define __INTPTR_WIDTH__ 64
#else
#define _Addr int
#endif
+2 -2
View File
@@ -3,14 +3,14 @@
typedef unsigned __int128 uint128_t;
typedef unsigned long long uint64_t;
typedef unsigned long uint32_t;
typedef unsigned int uint32_t;
typedef unsigned short uint16_t;
typedef unsigned char uint8_t;
typedef __int128 int128_t;
typedef long long int64_t;
typedef long int32_t;
typedef int int32_t;
typedef short int16_t;
typedef char int8_t;