Define __intptr_t.

This commit is contained in:
Ulrich Drepper 1998-07-08 22:52:22 +00:00
parent 668a0ed59b
commit bb3ebfdb47
3 changed files with 9 additions and 0 deletions

View File

@ -110,6 +110,9 @@ typedef struct
typedef int __t_scalar_t; typedef int __t_scalar_t;
typedef unsigned int __t_uscalar_t; typedef unsigned int __t_uscalar_t;
/* Duplicates info from stdint.h but this is used in unistd.h. */
typedef long int __intptr_t;
/* Now add the thread types. */ /* Now add the thread types. */
#include <bits/pthreadtypes.h> #include <bits/pthreadtypes.h>

View File

@ -134,6 +134,9 @@ typedef __loff_t __off64_t;
typedef int __t_scalar_t; typedef int __t_scalar_t;
typedef unsigned int __t_uscalar_t; typedef unsigned int __t_uscalar_t;
/* Duplicates info from stdint.h but this is used in unistd.h. */
typedef int __intptr_t;
/* Now add the thread types. */ /* Now add the thread types. */
#include <bits/pthreadtypes.h> #include <bits/pthreadtypes.h>

View File

@ -115,4 +115,7 @@ typedef __u_quad_t __fsfilcnt64_t;
typedef int __t_scalar_t; typedef int __t_scalar_t;
typedef unsigned int __t_uscalar_t; typedef unsigned int __t_uscalar_t;
/* Duplicates info from stdint.h but this is used in unistd.h. */
typedef long int __intptr_t;
#endif /* bits/types.h */ #endif /* bits/types.h */