add RCSID to generated .c file

This commit is contained in:
lukem 2001-11-13 07:52:41 +00:00
parent 9048aaae21
commit 6f230ccce0
1 changed files with 2 additions and 1 deletions

View File

@ -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 <sys/cdefs.h>\n__KERNEL_RCSID(0, \"\$NetBSD\$\");\n\n") > cfile
printf("#include <sys/param.h>\n") > cfile
printf("#include <dev/isapnp/isapnpdevs.h>\n\n") > cfile
}