From 6f230ccce03d77ce7cf234481f07a9d492358a5c Mon Sep 17 00:00:00 2001 From: lukem Date: Tue, 13 Nov 2001 07:52:41 +0000 Subject: [PATCH] add RCSID to generated .c file --- sys/dev/isapnp/devlist2h.awk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/isapnp/devlist2h.awk b/sys/dev/isapnp/devlist2h.awk index b8f7869f8c12..83ffbfc1c42a 100644 --- a/sys/dev/isapnp/devlist2h.awk +++ b/sys/dev/isapnp/devlist2h.awk @@ -1,5 +1,5 @@ #! /usr/bin/awk -f -# $NetBSD: devlist2h.awk,v 1.4 1999/04/06 23:03:44 augustss Exp $ +# $NetBSD: devlist2h.awk,v 1.5 2001/11/13 07:52:41 lukem Exp $ # # Copyright (c) 1998 The NetBSD Foundation, Inc. # All rights reserved. @@ -104,6 +104,7 @@ function checkdecl() { printf("\tconst struct isapnp_matchinfo *devcompat;\n") > hfile printf("\tint ncompat;\n") > hfile printf("};\n\n") > hfile + printf("\n#include \n__KERNEL_RCSID(0, \"\$NetBSD\$\");\n\n") > cfile printf("#include \n") > cfile printf("#include \n\n") > cfile }