#define _GLIBCXX_RES_LIMITS 1
/* Define if size_t is unsigned int. */
-#define _GLIBCXX_SIZE_T_IS_UINT 1
+/* #define _GLIBCXX_SIZE_T_IS_UINT 1 */
/* Define if the compiler is configured for setjmp/longjmp exceptions. */
/* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
#define _GLIBCXX_RES_LIMITS 1
/* Define if size_t is unsigned int. */
-#define _GLIBCXX_SIZE_T_IS_UINT 1
+/* #define _GLIBCXX_SIZE_T_IS_UINT 1 */
/* Define if the compiler is configured for setjmp/longjmp exceptions. */
/* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
/* Make gcc agree with <machine/ansi.h>. */
#undef SIZE_TYPE
-#define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "unsigned int")
+#define SIZE_TYPE "long unsigned int"
#undef PTRDIFF_TYPE
-#define PTRDIFF_TYPE (TARGET_64BIT ? "long int" : "int")
+#define PTRDIFF_TYPE "long int"
#undef WCHAR_TYPE_SIZE
#define WCHAR_TYPE_SIZE (TARGET_64BIT ? 32 : BITS_PER_WORD)
/* Make gcc agree with <machine/ansi.h>. */
#undef SIZE_TYPE
-#define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "unsigned int")
+#define SIZE_TYPE "long unsigned int"
#undef PTRDIFF_TYPE
-#define PTRDIFF_TYPE (TARGET_64BIT ? "long int" : "int")
+#define PTRDIFF_TYPE "long int"
#undef WCHAR_TYPE_SIZE
#define WCHAR_TYPE_SIZE (TARGET_64BIT ? 32 : BITS_PER_WORD)
/* Make gcc agree with <machine/ansi.h>. */
#undef SIZE_TYPE
-#define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "unsigned int")
+#define SIZE_TYPE "long unsigned int"
#undef PTRDIFF_TYPE
-#define PTRDIFF_TYPE (TARGET_64BIT ? "long int" : "int")
+#define PTRDIFF_TYPE "long int"
#undef WCHAR_TYPE_SIZE
#define WCHAR_TYPE_SIZE (TARGET_64BIT ? 32 : BITS_PER_WORD)
* do not wish to overly pollute their namespaces.
*/
+typedef unsigned long __size_t;
+typedef long __ssize_t;
+
#if defined(__amd64__)
-typedef __uint64_t __size_t;
-typedef __int64_t __ssize_t;
typedef __int64_t __register_t;
typedef __uint64_t __u_register_t;
#elif defined(__i386__)
-typedef __uint32_t __size_t;
-typedef __int32_t __ssize_t;
typedef __int32_t __register_t;
typedef __uint32_t __u_register_t;
#endif
* do not wish to overly pollute their namespaces.
*/
-typedef __uint32_t __size_t;
-typedef __int32_t __ssize_t;
+typedef unsigned long __size_t;
+typedef long __ssize_t;
+
typedef long __time_t;
typedef int __timer_t;
typedef __int32_t __register_t;