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 /usr.bin/msgc/msgmain.c | |
| parent | 0f9cf6ed8d1c845a42bb37ba11d5d4db4f434443 (diff) | |
only use __RCSID() if it is #defined
Diffstat (limited to 'usr.bin/msgc/msgmain.c')
| -rw-r--r-- | usr.bin/msgc/msgmain.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 |
