GNU file utilities FILEUTILS-3_10
authorJim Meyering <jim@meyering.net>
Sat, 5 Nov 1994 13:34:33 +0000 (13:34 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 5 Nov 1994 13:34:33 +0000 (13:34 +0000)
lib/filemode.c
lib/obstack.h

index 478120b..20c65c4 100644 (file)
@@ -27,7 +27,7 @@
 #  define S_IRUSR S_IREAD
 # else
 #  define S_IRUSR 00400
-#endif
+# endif
 #endif
 
 #if !S_IWUSR
index a5db1a0..2f5ec61 100644 (file)
@@ -269,7 +269,10 @@ int obstack_chunk_size (struct obstack *obstack);
 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
 \f
 #if defined (__GNUC__) && defined (__STDC__)
-#if __GNUC__ < 2
+/* 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