diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-31 00:13:58 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-31 00:13:58 +0000 |
commit | 8a4000b758b71ba1e19e7a5c65755bcfaae7563a (patch) | |
tree | 51e7e6e74b3c658da7383cc2fa935a36bc817d01 /sys | |
parent | 19c1013adaced0edffd556a26557a81c1d03261c (diff) |
regen
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/init_sysent.c | 4 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 4 | ||||
-rw-r--r-- | sys/sys/syscall.h | 6 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 57b497780a8..c7766d2bee2 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.72 2003/12/11 23:04:14 millert Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.73 2003/12/31 00:13:57 millert Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp + * created from; OpenBSD: syscalls.master,v 1.65 2003/12/31 00:13:24 millert Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index b05a2b8b73c..9dcad705709 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.72 2003/12/11 23:04:14 millert Exp $ */ +/* $OpenBSD: syscalls.c,v 1.73 2003/12/31 00:13:57 millert Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp + * created from; OpenBSD: syscalls.master,v 1.65 2003/12/31 00:13:24 millert Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 267bebe6437..4e8919071aa 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.71 2003/12/11 23:04:14 millert Exp $ */ +/* $OpenBSD: syscall.h,v 1.72 2003/12/31 00:13:57 millert Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp + * created from; OpenBSD: syscalls.master,v 1.65 2003/12/31 00:13:24 millert Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -28,7 +28,7 @@ /* syscall: "close" ret: "int" args: "int" */ #define SYS_close 6 -/* syscall: "wait4" ret: "int" args: "int" "int *" "int" "struct rusage *" */ +/* syscall: "wait4" ret: "pid_t" args: "pid_t" "int *" "int" "struct rusage *" */ #define SYS_wait4 7 /* 8 is compat_43 ocreat */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 90a3be43d25..9208d4b76e6 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.73 2003/12/11 23:04:14 millert Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.74 2003/12/31 00:13:57 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp + * created from; OpenBSD: syscalls.master,v 1.65 2003/12/31 00:13:24 millert Exp */ #ifdef syscallarg @@ -50,7 +50,7 @@ struct sys_close_args { }; struct sys_wait4_args { - syscallarg(int) pid; + syscallarg(pid_t) pid; syscallarg(int *) status; syscallarg(int) options; syscallarg(struct rusage *) rusage; |