mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix declaration of size_t on x86.
This commit is contained in:
parent
53e945aa4f
commit
cceaaf0089
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ typedef __uint64_t __uintmax_t;
|
|||
|
||||
/* Define an integer able to hold the size of the largest continuous memory */
|
||||
/* region and define pointer safe integer types. */
|
||||
typedef unsigned int __size_t;
|
||||
typedef signed long __ssize_t;
|
||||
typedef long unsigned int __size_t;
|
||||
typedef long signed int __ssize_t;
|
||||
typedef signed long __intptr_t;
|
||||
typedef unsigned long __uintptr_t;
|
||||
typedef signed long __ptrdiff_t;
|
||||
|
|
Loading…
Reference in a new issue