Merge pull request #946 from adolson/uint64-fix

wrong typedef - closes #270
This commit is contained in:
Juan Linietsky 2015-01-08 21:59:25 -03:00
commit a6c2400b24
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ typedef signed short int16_t;
typedef unsigned int uint32_t;
typedef signed int int32_t;
typedef long long int64_t;
typedef unsigned long long int64_t;
typedef unsigned long long uint64_t;
#else
#include <stdint.h>
#endif