mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix x86_64 declaration of uint64_t.
This commit is contained in:
parent
49a66893b2
commit
986d331d39
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue