1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-11 09:50:12 +00:00

Throw the $FreeBSD$s back in, properly escaping them.

This commit is contained in:
Mike Silbersack 2002-01-04 05:27:47 +00:00
parent 91ea78c52a
commit a262ae8267
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88873
2 changed files with 8 additions and 8 deletions

View File

@ -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>

View File

@ -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>