diff options
| author | lukem <lukem@NetBSD.org> | 2003-07-17 08:33:03 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2003-07-17 08:33:03 +0000 |
| commit | abcf838dab5bbdd67fc4817ffe80d19d4efa799c (patch) | |
| tree | 840e30a8fb2a5e1a8b4e912bc9fdf85986477da5 | |
| parent | 0f9cf6ed8d1c845a42bb37ba11d5d4db4f434443 (diff) | |
only use __RCSID() if it is #defined
| -rw-r--r-- | usr.bin/menuc/avl.c | 6 | ||||
| -rw-r--r-- | usr.bin/menuc/main.c | 6 | ||||
| -rw-r--r-- | usr.bin/menuc/mdb.c | 6 | ||||
| -rw-r--r-- | usr.bin/menuc/util.c | 6 | ||||
| -rw-r--r-- | usr.bin/msgc/msgdb.c | 6 | ||||
| -rw-r--r-- | usr.bin/msgc/msgmain.c | 6 | ||||
| -rw-r--r-- | usr.bin/msgc/msgparse.y | 6 | ||||
| -rw-r--r-- | usr.bin/msgc/msgscan.l | 6 |
8 files changed, 24 insertions, 24 deletions
diff --git a/usr.bin/menuc/avl.c b/usr.bin/menuc/avl.c index 7b5247bf809..6a5d232c100 100644 --- a/usr.bin/menuc/avl.c +++ b/usr.bin/menuc/avl.c @@ -1,4 +1,4 @@ -/* $NetBSD: avl.c,v 1.4 2003/06/23 13:05:48 agc Exp $ */ +/* $NetBSD: avl.c,v 1.5 2003/07/17 08:33:43 lukem Exp $ */ /* * Copyright (c) 1997 Philip A. Nelson. @@ -48,8 +48,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: avl.c,v 1.4 2003/06/23 13:05:48 agc Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: avl.c,v 1.5 2003/07/17 08:33:43 lukem Exp $"); #endif diff --git a/usr.bin/menuc/main.c b/usr.bin/menuc/main.c index 90160ca024f..b6ad1fcb5b0 100644 --- a/usr.bin/menuc/main.c +++ b/usr.bin/menuc/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.8 2003/06/23 13:05:48 agc Exp $ */ +/* $NetBSD: main.c,v 1.9 2003/07/17 08:33:43 lukem Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -40,8 +40,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: main.c,v 1.8 2003/06/23 13:05:48 agc Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: main.c,v 1.9 2003/07/17 08:33:43 lukem Exp $"); #endif diff --git a/usr.bin/menuc/mdb.c b/usr.bin/menuc/mdb.c index e857055e699..401c8765555 100644 --- a/usr.bin/menuc/mdb.c +++ b/usr.bin/menuc/mdb.c @@ -1,4 +1,4 @@ -/* $NetBSD: mdb.c,v 1.35 2003/07/07 12:20:56 dsl Exp $ */ +/* $NetBSD: mdb.c,v 1.36 2003/07/17 08:33:44 lukem Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -40,8 +40,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: mdb.c,v 1.35 2003/07/07 12:20:56 dsl Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: mdb.c,v 1.36 2003/07/17 08:33:44 lukem Exp $"); #endif diff --git a/usr.bin/menuc/util.c b/usr.bin/menuc/util.c index 5bdf30c743e..a45eb6fd996 100644 --- a/usr.bin/menuc/util.c +++ b/usr.bin/menuc/util.c @@ -1,4 +1,4 @@ -/* $NetBSD: util.c,v 1.2 2003/06/23 13:05:49 agc Exp $ */ +/* $NetBSD: util.c,v 1.3 2003/07/17 08:33:44 lukem Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -40,8 +40,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: util.c,v 1.2 2003/06/23 13:05:49 agc Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: util.c,v 1.3 2003/07/17 08:33:44 lukem Exp $"); #endif diff --git a/usr.bin/msgc/msgdb.c b/usr.bin/msgc/msgdb.c index a9ab96fd75f..9c086e9f014 100644 --- a/usr.bin/msgc/msgdb.c +++ b/usr.bin/msgc/msgdb.c @@ -1,4 +1,4 @@ -/* $NetBSD: msgdb.c,v 1.17 2003/06/27 22:12:00 dsl Exp $ */ +/* $NetBSD: msgdb.c,v 1.18 2003/07/17 08:33:03 lukem Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -40,8 +40,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: msgdb.c,v 1.17 2003/06/27 22:12:00 dsl Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: msgdb.c,v 1.18 2003/07/17 08:33:03 lukem Exp $"); #endif diff --git a/usr.bin/msgc/msgmain.c b/usr.bin/msgc/msgmain.c index 51470e10cc1..cb8cd1002a0 100644 --- a/usr.bin/msgc/msgmain.c +++ b/usr.bin/msgc/msgmain.c @@ -1,4 +1,4 @@ -/* $NetBSD: msgmain.c,v 1.5 2003/06/23 13:05:50 agc Exp $ */ +/* $NetBSD: msgmain.c,v 1.6 2003/07/17 08:33:04 lukem Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -40,8 +40,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: msgmain.c,v 1.5 2003/06/23 13:05:50 agc Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: msgmain.c,v 1.6 2003/07/17 08:33:04 lukem Exp $"); #endif diff --git a/usr.bin/msgc/msgparse.y b/usr.bin/msgc/msgparse.y index 3978167a0d7..353056f662e 100644 --- a/usr.bin/msgc/msgparse.y +++ b/usr.bin/msgc/msgparse.y @@ -1,4 +1,4 @@ -/* $NetBSD: msgparse.y,v 1.2 2003/06/23 13:05:50 agc Exp $ */ +/* $NetBSD: msgparse.y,v 1.3 2003/07/17 08:33:04 lukem Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -40,8 +40,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: msgparse.y,v 1.2 2003/06/23 13:05:50 agc Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: msgparse.y,v 1.3 2003/07/17 08:33:04 lukem Exp $"); #endif diff --git a/usr.bin/msgc/msgscan.l b/usr.bin/msgc/msgscan.l index 1882718859a..01fd3c8e3ae 100644 --- a/usr.bin/msgc/msgscan.l +++ b/usr.bin/msgc/msgscan.l @@ -1,4 +1,4 @@ -/* $NetBSD: msgscan.l,v 1.3 2003/06/23 13:05:50 agc Exp $ */ +/* $NetBSD: msgscan.l,v 1.4 2003/07/17 08:33:05 lukem Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -41,8 +41,8 @@ #include <sys/cdefs.h> -#ifndef lint -__RCSID("$NetBSD: msgscan.l,v 1.3 2003/06/23 13:05:50 agc Exp $"); +#if defined(__RCSID) && !defined(lint) +__RCSID("$NetBSD: msgscan.l,v 1.4 2003/07/17 08:33:05 lukem Exp $"); #endif |
