diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2000-03-27 18:34:59 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2000-03-27 18:34:59 +0000 |
commit | f414a6e5b871ee15d5fd6e12d7f7379b089ed904 (patch) | |
tree | 4b130b334d92b3bdd1ad4dfbdcbea20020e4852a | |
parent | 6d8de81746c360cd44b19fec644753f737d942df (diff) |
don't include rcsid in compile
-rw-r--r-- | sys/dev/pcmcia/if_wi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/if_wi.c b/sys/dev/pcmcia/if_wi.c index 1987185b837..03332aef0d0 100644 --- a/sys/dev/pcmcia/if_wi.c +++ b/sys/dev/pcmcia/if_wi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi.c,v 1.8 2000/02/03 00:56:45 angelos Exp $ */ +/* $OpenBSD: if_wi.c,v 1.9 2000/03/27 18:34:58 jason Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -133,9 +133,9 @@ u_int32_t widebug = WIDEBUG; #define DPRINTF(mask,args) #endif /* WIDEBUG */ -#if !defined(lint) +#if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.8 2000/02/03 00:56:45 angelos Exp $"; + "$OpenBSD: if_wi.c,v 1.9 2000/03/27 18:34:58 jason Exp $"; #endif /* lint */ #ifdef foo |