This commit is contained in:
mycroft 1997-10-15 17:28:40 +00:00
parent 5570f69778
commit 91395f0f4f
4 changed files with 9 additions and 9 deletions

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.58 1997/10/15 17:04:20 mycroft Exp * created from NetBSD: syscalls.master,v 1.59 1997/10/15 17:27:53 mycroft Exp
*/ */
#include <sys/param.h> #include <sys/param.h>

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.58 1997/10/15 17:04:20 mycroft Exp * created from NetBSD: syscalls.master,v 1.59 1997/10/15 17:27:53 mycroft Exp
*/ */
char *syscallnames[] = { char *syscallnames[] = {

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.58 1997/10/15 17:04:20 mycroft Exp * created from NetBSD: syscalls.master,v 1.59 1997/10/15 17:27:53 mycroft Exp
*/ */
/* syscall: "syscall" ret: "int" args: "int" "..." */ /* syscall: "syscall" ret: "int" args: "int" "..." */
@ -122,7 +122,7 @@
/* 40 is compat_43 olstat */ /* 40 is compat_43 olstat */
/* syscall: "dup" ret: "int" args: "u_int" */ /* syscall: "dup" ret: "int" args: "int" */
#define SYS_dup 41 #define SYS_dup 41
/* syscall: "pipe" ret: "int" args: */ /* syscall: "pipe" ret: "int" args: */
@ -251,7 +251,7 @@
/* 89 is compat_43 ogetdtablesize */ /* 89 is compat_43 ogetdtablesize */
/* syscall: "dup2" ret: "int" args: "u_int" "u_int" */ /* syscall: "dup2" ret: "int" args: "int" "int" */
#define SYS_dup2 90 #define SYS_dup2 90
/* syscall: "fcntl" ret: "int" args: "int" "int" "..." */ /* syscall: "fcntl" ret: "int" args: "int" "int" "..." */

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.58 1997/10/15 17:04:20 mycroft Exp * created from NetBSD: syscalls.master,v 1.59 1997/10/15 17:27:53 mycroft Exp
*/ */
#define syscallarg(x) union { x datum; register_t pad; } #define syscallarg(x) union { x datum; register_t pad; }
@ -188,7 +188,7 @@ struct compat_43_sys_lstat_args {
}; };
struct sys_dup_args { struct sys_dup_args {
syscallarg(u_int) fd; syscallarg(int) fd;
}; };
struct sys_profil_args { struct sys_profil_args {
@ -375,8 +375,8 @@ struct compat_43_sys_sethostname_args {
}; };
struct sys_dup2_args { struct sys_dup2_args {
syscallarg(u_int) from; syscallarg(int) from;
syscallarg(u_int) to; syscallarg(int) to;
}; };
struct sys_fcntl_args { struct sys_fcntl_args {