summaryrefslogtreecommitdiff
path: root/sys/kern/makesyscalls.sh
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1998-02-08 22:30:42 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1998-02-08 22:30:42 +0000
commit847744f274b2f7c1fdbb8c11ca8c727acba2ceeb (patch)
treeefc468b88f6caa71c5d38449e362f22ce067a941 /sys/kern/makesyscalls.sh
parent44e937e4cff188186e8a021bef2291db332df31c (diff)
Sync with NetBSD
Diffstat (limited to 'sys/kern/makesyscalls.sh')
-rw-r--r--sys/kern/makesyscalls.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh
index cc0fddab1ef..2aa198a2ade 100644
--- a/sys/kern/makesyscalls.sh
+++ b/sys/kern/makesyscalls.sh
@@ -1,5 +1,6 @@
#! /bin/sh -
-# $NetBSD: makesyscalls.sh,v 1.21 1996/12/22 06:45:14 cgd Exp $
+# $OpenBSD: makesyscalls.sh,v 1.6 1998/02/08 22:30:41 tholo Exp $
+# $NetBSD: makesyscalls.sh,v 1.26 1998/01/09 06:17:51 thorpej Exp $
#
# Copyright (c) 1994,1996 Christopher G. Demetriou
# All rights reserved.
@@ -132,6 +133,7 @@ BEGIN {
compatopts = \"$compatopts\"
"'
+ printf "/*\t\$OpenBSD\$\t*/\n\n" > sysdcl
printf "/*\n * System call switch table.\n *\n" > sysdcl
printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysdcl
@@ -150,14 +152,17 @@ BEGIN {
printf "\n#define\ts(type)\tsizeof(type)\n\n" > sysent
printf "struct sysent %s[] = {\n",switchname > sysent
+ printf "/*\t\$OpenBSD\$\t*/\n\n" > sysnames
printf "/*\n * System call names.\n *\n" > sysnames
printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysnames
printf "\n/*\n * System call prototypes.\n */\n\n" > sysprotos
+ printf "/*\t\$OpenBSD\$\t*/\n\n" > sysnumhdr
printf "/*\n * System call numbers.\n *\n" > sysnumhdr
printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysnumhdr
+ printf "/*\t\$OpenBSD\$\t*/\n\n" > sysarghdr
printf "/*\n * System call argument lists.\n *\n" > sysarghdr
printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysarghdr
}