diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-08-16 08:33:57 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-08-16 08:33:57 +0000 |
commit | affb71bd300e5e3211c7d2de4a78adcedb1e3717 (patch) | |
tree | 96eeacc203deb9a12db4f0ec0b3aaac188112738 /sys | |
parent | fd301e27e3a6e455d2d922f84ff1c000b115cbed (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 94d23517406..abca4fdb01f 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.147 2013/08/14 05:27:02 guenther Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.148 2013/08/16 08:33:56 guenther Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.135 2013/08/14 05:26:14 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.136 2013/08/16 08:33:20 guenther Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 300062a48b7..822a565477d 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.148 2013/08/14 05:27:02 guenther Exp $ */ +/* $OpenBSD: syscalls.c,v 1.149 2013/08/16 08:33:56 guenther Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.135 2013/08/14 05:26:14 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.136 2013/08/16 08:33:20 guenther Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index c307ac5a525..d237db1dc1b 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.147 2013/08/14 05:27:02 guenther Exp $ */ +/* $OpenBSD: syscall.h,v 1.148 2013/08/16 08:33:56 guenther Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.135 2013/08/14 05:26:14 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.136 2013/08/16 08:33:20 guenther Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -300,7 +300,7 @@ /* syscall: "connect" ret: "int" args: "int" "const struct sockaddr *" "socklen_t" */ #define SYS_connect 98 -/* syscall: "getdents" ret: "int" args: "int" "struct dirent *" "size_t" */ +/* syscall: "getdents" ret: "int" args: "int" "void *" "size_t" */ #define SYS_getdents 99 /* syscall: "getpriority" ret: "int" args: "int" "id_t" */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index f591e195fa5..76328505e0f 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.149 2013/08/14 05:27:02 guenther Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.150 2013/08/16 08:33:56 guenther Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.135 2013/08/14 05:26:14 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.136 2013/08/16 08:33:20 guenther Exp */ #ifdef syscallarg @@ -497,7 +497,7 @@ struct sys_connect_args { struct sys_getdents_args { syscallarg(int) fd; - syscallarg(struct dirent *) buf; + syscallarg(void *) buf; syscallarg(size_t) buflen; }; |