From abcf838dab5bbdd67fc4817ffe80d19d4efa799c Mon Sep 17 00:00:00 2001 From: lukem Date: Thu, 17 Jul 2003 08:33:03 +0000 Subject: only use __RCSID() if it is #defined --- usr.bin/msgc/msgdb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/msgc/msgdb.c') 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 -#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 -- cgit