summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-09-26 03:27:22 +0000
committerphk <phk@FreeBSD.org>1994-09-26 03:27:22 +0000
commitddacaf4e0d144e1b3fb6494aca7f45a78e8bd495 (patch)
tree9719d8b8bf9669e7677b1e3c76a5c0f98f520987 /sys
parent88bee1e698eab6445fa919ef122394c263a018a3 (diff)
downloadFreeBSD-src-ddacaf4e0d144e1b3fb6494aca7f45a78e8bd495.zip
FreeBSD-src-ddacaf4e0d144e1b3fb6494aca7f45a78e8bd495.tar.gz
init_sysent.c was missing the final newline.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/init_sysent.c4
-rw-r--r--sys/kern/makesyscalls.sh4
-rw-r--r--sys/kern/syscalls.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 19219ab..b298407 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.8 1994/09/13 14:46:54 dfr Exp $
+ * created from $Id: syscalls.master,v 1.9 1994/09/18 20:39:50 wollman Exp $
*/
#include <sys/param.h>
@@ -546,4 +546,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 8b27dde..fb3f4d4 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.6 1994/09/11 20:45:34 ats Exp $
+# $Id: makesyscalls.sh,v 1.7 1994/09/13 02:21:48 wollman 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};") > sysent
+ printf ("\t0,\n\t0,\n\t0\n};\n") > sysent
printf("};\n") > sysnames
} '
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index edf4b58..bb0bec6 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from $Id: syscalls.master,v 1.8 1994/09/13 14:46:54 dfr Exp $
+ * created from $Id: syscalls.master,v 1.9 1994/09/18 20:39:50 wollman Exp $
*/
char *syscallnames[] = {
OpenPOWER on IntegriCloud