lib: Add missing bits to stddef.h, stdint.h; pointers are "long"
authorH. Peter Anvin <hpa@zytor.com>
Tue, 21 Jun 2011 04:17:23 +0000 (21:17 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Tue, 21 Jun 2011 04:17:23 +0000 (21:17 -0700)
Add missing bits to stddef.h and stdint.h and correct the basic
pointer type to "long".  We really should use the gcc macros for
this...

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/include/bitsize/stddef.h
com32/include/stdint.h

index caa5e72..bba48cf 100644 (file)
@@ -6,13 +6,9 @@
 #define _BITSIZE_STDDEF_H
 
 #define _SIZE_T
-#if defined(__s390__) || defined(__hppa__) || defined(__cris__)
 typedef unsigned long size_t;
-#else
-typedef unsigned int size_t;
-#endif
 
 #define _PTRDIFF_T
-typedef signed int ptrdiff_t;
+typedef signed long ptrdiff_t;
 
 #endif /* _BITSIZE_STDDEF_H */
index a8391bf..a0ebbce 100644 (file)
@@ -43,14 +43,22 @@ typedef unsigned long long uint_fast64_t;
 
 /* Pointer types */
 
-typedef int32_t intptr_t;
-typedef uint32_t uintptr_t;
+typedef signed long intptr_t;
+typedef unsigned long uintptr_t;
 
 /* Maximal types */
 
 typedef int64_t intmax_t;
 typedef uint64_t uintmax_t;
 
+/* Rank definitions, used in inttypes.h */
+#define __PRIFAST_RANK ""
+#define __SCNFAST_RANK ""
+#define __PRIPTR_RANK  "l"
+#define __SCNPTR_RANK  "l"
+#define __PRI64_RANK    "ll"
+#define __SCN64_RANK    "ll"
+
 /*
  * To be strictly correct...
  */