diff options
author | obrien <obrien@FreeBSD.org> | 2003-05-03 19:44:46 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-05-03 19:44:46 +0000 |
commit | 2a8f1d64a1061d10f0cb8255e350e74fa4365d3b (patch) | |
tree | 7ddfd1e9073a845b21ff0f412206ad1d2061649e /usr.bin/unifdef | |
parent | 8c8b459cd8a212311d87df07bef9e08aa4aaddcf (diff) | |
download | FreeBSD-src-2a8f1d64a1061d10f0cb8255e350e74fa4365d3b.zip FreeBSD-src-2a8f1d64a1061d10f0cb8255e350e74fa4365d3b.tar.gz |
Make GCC 3.3 happy with rcsid[], sccs[], and copyright[].
Diffstat (limited to 'usr.bin/unifdef')
-rw-r--r-- | usr.bin/unifdef/unifdef.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/unifdef/unifdef.c b/usr.bin/unifdef/unifdef.c index 66f65d8..d008c6d 100644 --- a/usr.bin/unifdef/unifdef.c +++ b/usr.bin/unifdef/unifdef.c @@ -37,19 +37,19 @@ #include <sys/cdefs.h> #ifndef lint +#if 0 static const char copyright[] = "@(#) Copyright (c) 1985, 1993\n\ The Regents of the University of California. All rights reserved.\n"; +#endif #ifdef __IDSTRING __IDSTRING(Berkeley, "@(#)unifdef.c 8.1 (Berkeley) 6/6/93"); __IDSTRING(NetBSD, "$NetBSD: unifdef.c,v 1.8 2000/07/03 02:51:36 matt Exp $"); __IDSTRING(dotat, "$dotat: things/unifdef.c,v 1.148 2003/01/20 12:05:41 fanf2 Exp $"); #endif -#ifdef __FBSDID +#endif /* not lint */ __FBSDID("$FreeBSD$"); -#endif -#endif /* * unifdef - remove ifdef'ed lines |