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.h8
-rw-r--r--sys/sys/syscallargs.h4
4 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 2a6f24ceab7..3456acad525 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.46 2000/06/22 22:44:44 mickey Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.47 2000/09/12 17:28:44 millert Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.41 2000/06/22 22:41:19 mickey Exp
+ * created from; OpenBSD: syscalls.master,v 1.42 2000/09/12 17:25:56 millert Exp
*/
#include <sys/param.h>
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 10461b169c2..803d5ecdf67 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.46 2000/06/22 22:44:44 mickey Exp $ */
+/* $OpenBSD: syscalls.c,v 1.47 2000/09/12 17:28:44 millert Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.41 2000/06/22 22:41:19 mickey Exp
+ * created from; OpenBSD: syscalls.master,v 1.42 2000/09/12 17:25:56 millert Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 36c77a74d9f..5f59f224f24 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.45 2000/06/22 22:44:43 mickey Exp $ */
+/* $OpenBSD: syscall.h,v 1.46 2000/09/12 17:28:44 millert Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.41 2000/06/22 22:41:19 mickey Exp
+ * created from; OpenBSD: syscalls.master,v 1.42 2000/09/12 17:25:56 millert Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -521,7 +521,7 @@
/* syscall: "futimes" ret: "int" args: "int" "const struct timeval *" */
#define SYS_futimes 206
-/* syscall: "getpgid" ret: "int" args: "pid_t" */
+/* syscall: "getpgid" ret: "pid_t" args: "pid_t" */
#define SYS_getpgid 207
/* syscall: "xfspioctl" ret: "int" args: "int" "char *" "int" "struct ViceIoctl *" "int" */
@@ -588,7 +588,7 @@
/* syscall: "lchown" ret: "int" args: "const char *" "uid_t" "gid_t" */
#define SYS_lchown 254
-/* syscall: "getsid" ret: "int" args: "pid_t" */
+/* syscall: "getsid" ret: "pid_t" args: "pid_t" */
#define SYS_getsid 255
/* syscall: "msync" ret: "int" args: "void *" "size_t" "int" */
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index f1b4fe4c657..f02428e74a2 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.46 2000/06/22 22:44:43 mickey Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.47 2000/09/12 17:28:44 millert Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.41 2000/06/22 22:41:19 mickey Exp
+ * created from; OpenBSD: syscalls.master,v 1.42 2000/09/12 17:25:56 millert Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }