diff options
author | silby <silby@FreeBSD.org> | 2002-01-04 05:27:47 +0000 |
---|---|---|
committer | silby <silby@FreeBSD.org> | 2002-01-04 05:27:47 +0000 |
commit | a239a7e562c3eec0de53a1577b8d844c1f775ff3 (patch) | |
tree | 052a1dc1c19f8835edb9770e2143234c83ca4f41 /sys/tools | |
parent | 6cc0a06d0dcf178b024f11a248a46dbeb5c00fe2 (diff) | |
download | FreeBSD-src-a239a7e562c3eec0de53a1577b8d844c1f775ff3.zip FreeBSD-src-a239a7e562c3eec0de53a1577b8d844c1f775ff3.tar.gz |
Throw the $FreeBSD$s back in, properly escaping them.
Diffstat (limited to 'sys/tools')
-rw-r--r-- | sys/tools/vnode_if.awk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/tools/vnode_if.awk b/sys/tools/vnode_if.awk index 944232e..0cc3cf9 100644 --- a/sys/tools/vnode_if.awk +++ b/sys/tools/vnode_if.awk @@ -79,12 +79,12 @@ open(SRC, "<$srcfile") || die "Unable to open input file"; if ($hfile) { open(HEADER, ">$HEADER") || die "Unable to create $HEADER"; # Print out header information for vnode_if.h. - print HEADER <<END_OF_LEADING_COMMENT + print HEADER <<'END_OF_LEADING_COMMENT' /* * This file is produced automatically. * Do not modify anything in here by hand. * - * Created from src/sys/kern/vnode_if.pl + * Created from $FreeBSD$ */ extern struct vnodeop_desc vop_default_desc; @@ -95,12 +95,12 @@ END_OF_LEADING_COMMENT if ($cfile) { open(CFILE, ">$CFILE") || die "Unable to create $CFILE"; # Print out header information for vnode_if.c. - print CFILE <<END_OF_LEADING_COMMENT + print CFILE <<'END_OF_LEADING_COMMENT' /* * This file is produced automatically. * Do not modify anything in here by hand. * - * Created from src/sys/kern/vnode_if.pl + * Created from $FreeBSD$ */ #include <sys/param.h> |