[haiku-commits] r37379 - buildtools/trunk/gcc/gcc/ginclude

  • From: korli@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 3 Jul 2010 18:37:44 +0200 (CEST)

Author: korli
Date: 2010-07-03 18:37:44 +0200 (Sat, 03 Jul 2010)
New Revision: 37379
Changeset: http://dev.haiku-os.org/changeset/37379/haiku
Ticket: http://dev.haiku-os.org/ticket/5719

Modified:
   buildtools/trunk/gcc/gcc/ginclude/stddef.h
Log:
Don't define ssize_t for Haiku in GCC4, the next commit will define it in Haiku 
headers (see also #5719).


Modified: buildtools/trunk/gcc/gcc/ginclude/stddef.h
===================================================================
--- buildtools/trunk/gcc/gcc/ginclude/stddef.h  2010-07-03 15:21:01 UTC (rev 
37378)
+++ buildtools/trunk/gcc/gcc/ginclude/stddef.h  2010-07-03 16:37:44 UTC (rev 
37379)
@@ -209,9 +209,9 @@
 #endif
 #if !(defined (__GNUG__) && defined (size_t))
 typedef __SIZE_TYPE__ size_t;
-#if defined(__BEOS__) || defined(__HAIKU__)
+#if defined(__BEOS__)
 typedef long ssize_t;
-#endif /* __BEOS__ || __HAIKU__ */
+#endif /* __BEOS__ */
 #endif /* !(defined (__GNUG__) && defined (size_t)) */
 #endif /* __size_t */
 #endif /* _SIZET_ */


Other related posts:

  • » [haiku-commits] r37379 - buildtools/trunk/gcc/gcc/ginclude - korli