summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/sys/syscall.h8
-rw-r--r--sys/sys/syscallargs.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index a2ebc61435f..b3d87418d5d 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.24 1998/02/10 08:44:27 deraadt Exp $ */
+/* $OpenBSD: syscall.h,v 1.25 1998/02/16 22:01:08 millert Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.22 1998/02/10 08:44:07 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.23 1998/02/16 21:56:28 millert Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -105,10 +105,10 @@
/* syscall: "access" ret: "int" args: "const char *" "int" */
#define SYS_access 33
-/* syscall: "chflags" ret: "int" args: "const char *" "u_long" */
+/* syscall: "chflags" ret: "int" args: "const char *" "u_int" */
#define SYS_chflags 34
-/* syscall: "fchflags" ret: "int" args: "int" "u_long" */
+/* syscall: "fchflags" ret: "int" args: "int" "u_int" */
#define SYS_fchflags 35
/* syscall: "sync" ret: "void" args: */
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index 9d2fbfe4201..aaa8199e7cf 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.25 1998/02/10 08:44:28 deraadt Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.26 1998/02/16 22:01:10 millert Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.22 1998/02/10 08:44:07 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.23 1998/02/16 21:56:28 millert Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -166,12 +166,12 @@ struct sys_access_args {
struct sys_chflags_args {
syscallarg(const char *) path;
- syscallarg(u_long) flags;
+ syscallarg(u_int) flags;
};
struct sys_fchflags_args {
syscallarg(int) fd;
- syscallarg(u_long) flags;
+ syscallarg(u_int) flags;
};
struct sys_kill_args {