Fix declaration of size_t on x86.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-09-12 12:19:57 +02:00
parent 53e945aa4f
commit cceaaf0089
1 changed files with 2 additions and 2 deletions

View File

@ -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;