This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 6/7] malloc/obstack.h: Remove long obsolete NeXT gcc conditional


This fixes a warning introduced with -Wundef, but in general there
is no point supporting this long obsolete configuration.

2014-03-17  Will Newton  <will.newton@linaro.org>

	* malloc/obstack.h: Remove conditional for supporting
	ancient NeXT gcc version.
---
 malloc/obstack.h | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/malloc/obstack.h b/malloc/obstack.h
index 85472f9..0fd623e 100644
--- a/malloc/obstack.h
+++ b/malloc/obstack.h
@@ -249,13 +249,6 @@ extern int obstack_exit_failure;
 #define obstack_memory_used(h) _obstack_memory_used (h)
 
 #if defined __GNUC__
-/* NextStep 2.0 cc is really gcc 1.93 but it defines __GNUC__ = 2 and
-   does not implement __extension__.  But that compiler doesn't define
-   __GNUC_MINOR__.  */
-# if __GNUC__ < 2 || (__NeXT__ && !__GNUC_MINOR__)
-#  define __extension__
-# endif
-
 /* For GNU C, if not -traditional,
    we can define these macros to compute all args only once
    without using a global variable.
-- 
1.8.1.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]