summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-06 01:15:32 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-06 01:15:32 +0000
commit2ca226645cb7b53473a33649027a1acd2a5d5596 (patch)
treef3714e42205b5378311f36f775a869e03b682fa5
parent5846a7ca2a49bec96d28df5c26fd467f34b6ec68 (diff)
back out -CC change. It breaks lint on most of our architectures
because -CC is something that showed up in a later gcc. This is what happens when a pair of developers do not test on all our architectures.
-rw-r--r--usr.bin/xlint/xlint/xlint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xlint/xlint/xlint.c b/usr.bin/xlint/xlint/xlint.c
index fa291fed5df..37a7c8a8a47 100644
--- a/usr.bin/xlint/xlint/xlint.c
+++ b/usr.bin/xlint/xlint/xlint.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xlint.c,v 1.23 2005/12/02 18:05:52 cloder Exp $ */
+/* $OpenBSD: xlint.c,v 1.24 2005/12/06 01:15:31 deraadt Exp $ */
/* $NetBSD: xlint.c,v 1.3 1995/10/23 14:29:30 jpo Exp $ */
/*
@@ -33,7 +33,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: xlint.c,v 1.23 2005/12/02 18:05:52 cloder Exp $";
+static char rcsid[] = "$OpenBSD: xlint.c,v 1.24 2005/12/06 01:15:31 deraadt Exp $";
#endif
#include <sys/param.h>
@@ -318,7 +318,7 @@ main(int argc, char *argv[])
#if defined(__GNUC__) && __GNUC__ < 3
appcstrg(&cppflags, "-$");
#endif
- appcstrg(&cppflags, "-CC");
+ appcstrg(&cppflags, "-C");
appcstrg(&cppflags, "-Wcomment");
appcstrg(&cppflags, "-D__OpenBSD__");
appcstrg(&cppflags, "-Dlint"); /* XXX don't def. with -s */