aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Schmidt <sos@FreeBSD.org>1994-10-09 22:07:38 +0000
committerSøren Schmidt <sos@FreeBSD.org>1994-10-09 22:07:38 +0000
commit5de177eaf688c860b313fa095bee0c8258157deb (patch)
treeadb428564d723cd2efcba70cf1fc7f1a3d547dfd
parent5dfe9012360e34890eaa980de9b51b2387dbdc5f (diff)
Notes
-rw-r--r--sys/kern/init_sysent.c4
-rw-r--r--sys/kern/makesyscalls.sh4
2 files changed, 5 insertions, 3 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 15a3fb9f3c7e..3120786d47a6 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: syscalls.master,v 1.10 1994/09/28 22:44:47 wollman Exp $
+ * created from $Id: syscalls.master,v 1.11 1994/10/02 04:45:52 davidg Exp $
*/
#include <sys/param.h>
@@ -526,5 +526,7 @@ struct sysentvec aout_sysvec = {
sysent,
0,
0,
+ 0,
+ 0,
0
};
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh
index fb3f4d414405..441479be24bb 100644
--- a/sys/kern/makesyscalls.sh
+++ b/sys/kern/makesyscalls.sh
@@ -1,6 +1,6 @@
#! /bin/sh -
# @(#)makesyscalls.sh 8.1 (Berkeley) 6/10/93
-# $Id: makesyscalls.sh,v 1.7 1994/09/13 02:21:48 wollman Exp $
+# $Id: makesyscalls.sh,v 1.8 1994/09/26 03:27:22 phk Exp $
set -e
@@ -180,7 +180,7 @@ awk < $1 "
printf ("struct sysentvec aout_sysvec = {\n") > sysent
printf ("\tsizeof (sysent) / sizeof (sysent[0]),\n") > sysent
printf ("\tsysent,\n") > sysent
- printf ("\t0,\n\t0,\n\t0\n};\n") > sysent
+ printf ("\t0,\n\t0,\n\t0,\n\t0,\n\t0\n};\n") > sysent
printf("};\n") > sysnames
} '