blob: 0002d4bb88322b2a3206d92eccf8dc3c8abb48ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-bu,v 1.1 2002/01/03 20:40:48 tron Exp $
--- ../gcc-2.95.3/gcc/cppspec.c.orig Tue May 18 01:37:16 1999
+++ ../gcc-2.95.3/gcc/cppspec.c Thu Jan 3 20:37:55 2002
@@ -85,7 +85,11 @@
int need_E = 1;
/* Do we need to insert -no-gcc? */
+#if 0
int need_no_gcc = 1;
+#endif
+ /* XXX - For NetBSD backwards compatibility */
+ int need_no_gcc = 0;
/* Have we seen an input file? */
int seen_input = 0;
|