diff options
author | 1998-04-25 07:15:46 +0000 | |
---|---|---|
committer | 1998-04-25 07:15:46 +0000 | |
commit | cb57763a55e605a40027247c20b7670895d22e88 (patch) | |
tree | ba4be4b5355bd67e86715f3303b250751cf839f8 | |
parent | readlink() 3rd param is size_t; XPG (diff) | |
download | wireguard-openbsd-cb57763a55e605a40027247c20b7670895d22e88.tar.xz wireguard-openbsd-cb57763a55e605a40027247c20b7670895d22e88.zip |
sync
-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 27127e3a845..51f614992a1 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.25 1998/02/16 21:58:16 millert Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.26 1998/04/25 07:15:51 deraadt Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.23 1998/02/16 21:56:28 millert Exp + * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index ec648dedc68..b36e4f4fce1 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.25 1998/02/16 21:58:17 millert Exp $ */ +/* $OpenBSD: syscalls.c,v 1.26 1998/04/25 07:15:53 deraadt Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.23 1998/02/16 21:56:28 millert Exp + * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index b3d87418d5d..e6fbbac6f16 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.25 1998/02/16 22:01:08 millert Exp $ */ +/* $OpenBSD: syscall.h,v 1.26 1998/04/25 07:15:46 deraadt Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.23 1998/02/16 21:56:28 millert Exp + * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -175,7 +175,7 @@ /* syscall: "symlink" ret: "int" args: "const char *" "const char *" */ #define SYS_symlink 57 -/* syscall: "readlink" ret: "int" args: "const char *" "char *" "int" */ +/* syscall: "readlink" ret: "int" args: "const char *" "char *" "size_t" */ #define SYS_readlink 58 /* syscall: "execve" ret: "int" args: "const char *" "char *const *" "char *const *" */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index aaa8199e7cf..b803fa0d156 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.26 1998/02/16 22:01:10 millert Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.27 1998/04/25 07:15:49 deraadt Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.23 1998/02/16 21:56:28 millert Exp + * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -258,7 +258,7 @@ struct sys_symlink_args { struct sys_readlink_args { syscallarg(const char *) path; syscallarg(char *) buf; - syscallarg(int) count; + syscallarg(size_t) count; }; struct sys_execve_args { |