diff options
author | ru <ru@FreeBSD.org> | 2001-08-13 14:06:34 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-08-13 14:06:34 +0000 |
commit | 95ce4d2cdc59a8eb8cff5859ae0ba21451c4798d (patch) | |
tree | cb772fa69b05d0a14bcc6022fa62709c2343eb17 /usr.sbin | |
parent | 6294027bad54895037359ec3c713f0aed626424b (diff) | |
download | FreeBSD-src-95ce4d2cdc59a8eb8cff5859ae0ba21451c4798d.zip FreeBSD-src-95ce4d2cdc59a8eb8cff5859ae0ba21451c4798d.tar.gz |
Removed duplicate VCS ID tags, as per style(9).
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ancontrol/ancontrol.c | 16 | ||||
-rw-r--r-- | usr.sbin/usbdevs/usbdevs.8 | 1 | ||||
-rw-r--r-- | usr.sbin/wicontrol/wicontrol.c | 16 |
3 files changed, 14 insertions, 19 deletions
diff --git a/usr.sbin/ancontrol/ancontrol.c b/usr.sbin/ancontrol/ancontrol.c index 9d83e25..15ef266 100644 --- a/usr.sbin/ancontrol/ancontrol.c +++ b/usr.sbin/ancontrol/ancontrol.c @@ -28,10 +28,15 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#ifndef lint +static const char copyright[] = "@(#) Copyright (c) 1997, 1998, 1999\ + Bill Paul. All rights reserved."; +static const char rcsid[] = + "$FreeBSD$"; +#endif + #include <sys/types.h> #include <sys/cdefs.h> #include <sys/param.h> @@ -52,13 +57,6 @@ #include <errno.h> #include <err.h> -#if !defined(lint) -static const char copyright[] = "@(#) Copyright (c) 1997, 1998, 1999\ - Bill Paul. All rights reserved."; -static const char rcsid[] = - "@(#) $FreeBSD$"; -#endif - static void an_getval __P((const char *, struct an_req *)); static void an_setval __P((const char *, struct an_req *)); static void an_printwords __P((u_int16_t *, int)); diff --git a/usr.sbin/usbdevs/usbdevs.8 b/usr.sbin/usbdevs/usbdevs.8 index 50eac4c..b00425a 100644 --- a/usr.sbin/usbdevs/usbdevs.8 +++ b/usr.sbin/usbdevs/usbdevs.8 @@ -1,5 +1,4 @@ .\" $NetBSD: usbdevs.8,v 1.3 1998/07/23 13:57:51 augustss Exp $ -.\" $FreeBSD$ .\" Copyright (c) 1998 The NetBSD Foundation, Inc. .\" All rights reserved. .\" diff --git a/usr.sbin/wicontrol/wicontrol.c b/usr.sbin/wicontrol/wicontrol.c index 0cb76ab..1c764cc 100644 --- a/usr.sbin/wicontrol/wicontrol.c +++ b/usr.sbin/wicontrol/wicontrol.c @@ -28,10 +28,15 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#ifndef lint +static const char copyright[] = "@(#) Copyright (c) 1997, 1998, 1999\ + Bill Paul. All rights reserved."; +static const char rcsid[] = + "$FreeBSD$"; +#endif /* not lint */ + #include <sys/types.h> #include <sys/cdefs.h> #include <sys/param.h> @@ -53,13 +58,6 @@ #include <errno.h> #include <err.h> -#if !defined(lint) -static const char copyright[] = "@(#) Copyright (c) 1997, 1998, 1999\ - Bill Paul. All rights reserved."; -static const char rcsid[] = - "@(#) $FreeBSD$"; -#endif - static void wi_getval __P((char *, struct wi_req *)); static void wi_setval __P((char *, struct wi_req *)); static void wi_printstr __P((struct wi_req *)); |