summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 05:24:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 05:24:12 +0000
commite2cd6c399798843e13e76f49dc8ee048b51f99f1 (patch)
tree7236c98489c09b5dfe26f58152975415488c46e1 /sys
parent88633fe4a5dc6f23b202e2aefa5452fae4b3e60e (diff)
update for new syscalls.master
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/init_sysent.c2
-rw-r--r--sys/kern/syscalls.c2
-rw-r--r--sys/sys/syscall.h2
-rw-r--r--sys/sys/syscallargs.h6
4 files changed, 6 insertions, 6 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index bee2caa3fe8..6f69d159598 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.29 1995/10/10 01:32:53 mycroft Exp
+ * created from NetBSD: syscalls.master,v 1.30 1995/11/22 23:07:29 cgd Exp
*/
#include <sys/param.h>
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 9924bc1aef3..94545251337 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.29 1995/10/10 01:32:53 mycroft Exp
+ * created from NetBSD: syscalls.master,v 1.30 1995/11/22 23:07:29 cgd Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 43caca1cb3f..21de6918d6a 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.29 1995/10/10 01:32:53 mycroft Exp
+ * created from NetBSD: syscalls.master,v 1.30 1995/11/22 23:07:29 cgd Exp
*/
#define SYS_syscall 0
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index a5e8dabd6fe..d0ecc433697 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.29 1995/10/10 01:32:53 mycroft Exp
+ * created from NetBSD: syscalls.master,v 1.30 1995/11/22 23:07:29 cgd Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -193,8 +193,8 @@ struct sys_dup_args {
struct sys_profil_args {
syscallarg(caddr_t) samples;
- syscallarg(u_int) size;
- syscallarg(u_int) offset;
+ syscallarg(size_t) size;
+ syscallarg(u_long) offset;
syscallarg(u_int) scale;
};