Fix x86_64 declaration of uint64_t.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-26 20:46:31 +02:00
parent 49a66893b2
commit 986d331d39
1 changed files with 2 additions and 2 deletions

View File

@ -39,13 +39,13 @@
typedef signed char __int8_t;
typedef signed short __int16_t;
typedef signed int __int32_t;
typedef signed long long __int64_t;
typedef signed long __int64_t;
/* Define basic unsigned types. */
typedef unsigned char __uint8_t;
typedef unsigned short __uint16_t;
typedef unsigned int __uint32_t;
typedef unsigned long long __uint64_t;
typedef unsigned long __uint64_t;
typedef unsigned int __nat;