summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/init_sysent.c4
-rw-r--r--sys/kern/syscalls.c4
-rw-r--r--sys/sys/syscall.h6
-rw-r--r--sys/sys/syscallargs.h6
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;
};