This is a host tool, so check if __RCSID is defined before using it.

This commit is contained in:
bjh21 2003-04-21 08:41:28 +00:00
parent afdd63b90b
commit 76a26cefcd
2 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lex.l,v 1.10 2003/04/21 02:03:41 christos Exp $ */
/* $NetBSD: lex.l,v 1.11 2003/04/21 08:41:28 bjh21 Exp $ */
%{
/*-
@ -46,7 +46,9 @@
#if 0
static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: lex.l,v 1.10 2003/04/21 02:03:41 christos Exp $");
#ifdef __RCSID
__RCSID("$NetBSD: lex.l,v 1.11 2003/04/21 08:41:28 bjh21 Exp $");
#endif
#endif
#endif /* not lint */

View File

@ -1,4 +1,4 @@
/* $NetBSD: yacc.y,v 1.18 2003/04/21 02:03:42 christos Exp $ */
/* $NetBSD: yacc.y,v 1.19 2003/04/21 08:41:28 bjh21 Exp $ */
%{
/*-
@ -47,7 +47,9 @@
static char sccsid[] = "@(#)yacc.y 8.1 (Berkeley) 6/6/93";
static char rcsid[] = "$FreeBSD$";
#else
__RCSID("$NetBSD: yacc.y,v 1.18 2003/04/21 02:03:42 christos Exp $");
#ifdef __RCSID
__RCSID("$NetBSD: yacc.y,v 1.19 2003/04/21 08:41:28 bjh21 Exp $");
#endif
#endif
#endif /* not lint */