diff options
| author | Søren Schmidt <sos@FreeBSD.org> | 1994-08-26 09:33:37 +0000 |
|---|---|---|
| committer | Søren Schmidt <sos@FreeBSD.org> | 1994-08-26 09:33:37 +0000 |
| commit | acb5f10f46ee014a02c88cdf5e8a1854a47c0653 (patch) | |
| tree | 1dfdaa2d367a4123c948e53f5393d5d45170aaa1 | |
| parent | 75c34c34d6cf9cf8fc9dc890d2249d794b21e7b0 (diff) | |
Notes
| -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 |
