mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-28 05:55:27 +01:00
init_sysent.c was missing the final newline.
This commit is contained in:
parent
6d59cf8ef2
commit
fa69874a39
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3109
@ -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
|
||||
};
|
||||
};
|
||||
|
@ -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
|
||||
} '
|
||||
|
||||
|
@ -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[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user