diff options
| -rw-r--r-- | sys/kern/init_sysent.c | 4 | ||||
| -rw-r--r-- | sys/kern/makesyscalls.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index f33eab232a17..45370dc3e26b 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: init_sysent.c,v 1.3 1994/08/19 11:45:19 davidg Exp $ + * created from $Id: syscalls.master,v 1.4 1994/08/19 11:45:23 davidg Exp $ */ #include <sys/param.h> @@ -524,4 +524,4 @@ struct sysentvec aout_sysvec = { 0, 0, 0 -}; +};
\ No newline at end of file diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh index 51fd7602e550..76df7d165183 100644 --- a/sys/kern/makesyscalls.sh +++ b/sys/kern/makesyscalls.sh @@ -51,8 +51,8 @@ awk < $1 " NR == 1 { printf " * created from%s\n */\n\n", $0 > sysdcl printf "#include <sys/param.h>\n" > sysdcl - printf "#include <sys/systm.h>\n\n" > sysdcl - printf "int\tnosys();\n\n" > sysdcl + printf "#include <sys/systm.h>\n" > sysdcl + printf "#include <sys/sysent.h>\n\n" > sysdcl printf "struct sysent sysent[] = {\n" > sysent |
