Fix typo.

This commit is contained in:
mycroft 1995-10-10 01:34:37 +00:00
parent 5a44558c93
commit e6d9bc8787
5 changed files with 14 additions and 13 deletions

View File

@ -2,7 +2,7 @@
* System call numbers. * System call numbers.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp * created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
*/ */
#define FREEBSD_SYS_syscall 0 #define FREEBSD_SYS_syscall 0
@ -134,8 +134,8 @@
#define FREEBSD_SYS_osetregid 127 #define FREEBSD_SYS_osetregid 127
#define FREEBSD_SYS_rename 128 #define FREEBSD_SYS_rename 128
#define FREEBSD_SYS_otruncate 129 #define FREEBSD_SYS_otruncate 129
#define FREEBSD_SYS_ftruncate 130 #define FREEBSD_SYS_oftruncate 130
#define FREEBSD_SYS_oftruncate 131 #define FREEBSD_SYS_flock 131
#define FREEBSD_SYS_mkfifo 132 #define FREEBSD_SYS_mkfifo 132
#define FREEBSD_SYS_sendto 133 #define FREEBSD_SYS_sendto 133
#define FREEBSD_SYS_shutdown 134 #define FREEBSD_SYS_shutdown 134

View File

@ -2,7 +2,7 @@
* System call argument lists. * System call argument lists.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp * created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
*/ */
#define syscallarg(x) union { x datum; register_t pad; } #define syscallarg(x) union { x datum; register_t pad; }

View File

@ -2,7 +2,7 @@
* System call names. * System call names.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp * created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
*/ */
char *freebsd_syscallnames[] = { char *freebsd_syscallnames[] = {
@ -144,8 +144,8 @@ char *freebsd_syscallnames[] = {
"osetregid", /* 127 = osetregid */ "osetregid", /* 127 = osetregid */
"rename", /* 128 = rename */ "rename", /* 128 = rename */
"otruncate", /* 129 = otruncate */ "otruncate", /* 129 = otruncate */
"ftruncate", /* 130 = ftruncate */ "oftruncate", /* 130 = oftruncate */
"oftruncate", /* 131 = oftruncate */ "flock", /* 131 = flock */
"mkfifo", /* 132 = mkfifo */ "mkfifo", /* 132 = mkfifo */
"sendto", /* 133 = sendto */ "sendto", /* 133 = sendto */
"shutdown", /* 134 = shutdown */ "shutdown", /* 134 = shutdown */

View File

@ -2,7 +2,7 @@
* System call switch table. * System call switch table.
* *
* DO NOT EDIT-- this file is automatically generated. * DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp * created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
*/ */
#include <sys/param.h> #include <sys/param.h>
@ -287,9 +287,9 @@ struct sysent freebsd_sysent[] = {
{ 2, s(struct compat_43_freebsd_sys_truncate_args), { 2, s(struct compat_43_freebsd_sys_truncate_args),
compat_43_freebsd_sys_truncate }, /* 129 = otruncate */ compat_43_freebsd_sys_truncate }, /* 129 = otruncate */
{ 2, s(struct compat_43_sys_ftruncate_args), { 2, s(struct compat_43_sys_ftruncate_args),
compat_43_sys_ftruncate }, /* 130 = ftruncate */ compat_43_sys_ftruncate }, /* 130 = oftruncate */
{ 2, s(struct sys_flock_args), { 2, s(struct sys_flock_args),
sys_flock }, /* 131 = oftruncate */ sys_flock }, /* 131 = flock */
{ 2, s(struct freebsd_sys_mkfifo_args), { 2, s(struct freebsd_sys_mkfifo_args),
freebsd_sys_mkfifo }, /* 132 = mkfifo */ freebsd_sys_mkfifo }, /* 132 = mkfifo */
{ 6, s(struct sys_sendto_args), { 6, s(struct sys_sendto_args),

View File

@ -1,4 +1,4 @@
$NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp $ $NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp $
; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@ -237,8 +237,9 @@
128 STD { int freebsd_sys_rename(char *from, char *to); } 128 STD { int freebsd_sys_rename(char *from, char *to); }
129 STD { int compat_43_freebsd_sys_truncate(char *path, \ 129 STD { int compat_43_freebsd_sys_truncate(char *path, \
long length); } otruncate long length); } otruncate
130 NOARGS { int compat_43_sys_ftruncate(int fd, long length); } 130 NOARGS { int compat_43_sys_ftruncate(int fd, long length); } \
131 NOARGS { int sys_flock(int fd, int how); } oftruncate oftruncate
131 NOARGS { int sys_flock(int fd, int how); }
132 STD { int freebsd_sys_mkfifo(char *path, int mode); } 132 STD { int freebsd_sys_mkfifo(char *path, int mode); }
133 NOARGS { int sys_sendto(int s, caddr_t buf, size_t len, \ 133 NOARGS { int sys_sendto(int s, caddr_t buf, size_t len, \
int flags, caddr_t to, int tolen); } int flags, caddr_t to, int tolen); }