summaryrefslogtreecommitdiff
path: root/sys/compat/ibcs2
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-08-02 20:35:55 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-08-02 20:35:55 +0000
commitcd0973a98c9d44282442ba6bc83d7b2303769348 (patch)
tree39709448720ff4eb1f9fc5727b4d0cbe115fca9e /sys/compat/ibcs2
parent7355e38d0c8f253b0bd3b3066c37c5c0d99cb747 (diff)
Added Makefiles to build stuff from syscalls.master in some emulations.
Regenerated derived files from various syscalls.master files. Added $OpenBSD$.
Diffstat (limited to 'sys/compat/ibcs2')
-rw-r--r--sys/compat/ibcs2/Makefile11
-rw-r--r--sys/compat/ibcs2/TODO1
-rw-r--r--sys/compat/ibcs2/files.ibcs21
-rw-r--r--sys/compat/ibcs2/ibcs2_dirent.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_errno.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_errno.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_exec.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_exec.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_fcntl.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_fcntl.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_grp.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_ioctl.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_ipc.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_mount.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_pwd.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_signal.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_signal.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_socksys.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_socksys.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_stat.c1
-rw-r--r--sys/compat/ibcs2/ibcs2_stat.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_statfs.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_stropts.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_syscall.h2
-rw-r--r--sys/compat/ibcs2/ibcs2_syscallargs.h10
-rw-r--r--sys/compat/ibcs2/ibcs2_syscalls.c2
-rw-r--r--sys/compat/ibcs2/ibcs2_sysent.c7
-rw-r--r--sys/compat/ibcs2/ibcs2_sysi86.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_termios.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_time.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_timeb.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_types.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_unistd.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_ustat.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_util.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_utime.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_utsname.h1
-rw-r--r--sys/compat/ibcs2/ibcs2_wait.h1
-rw-r--r--sys/compat/ibcs2/syscalls.conf2
39 files changed, 57 insertions, 10 deletions
diff --git a/sys/compat/ibcs2/Makefile b/sys/compat/ibcs2/Makefile
new file mode 100644
index 00000000000..f5270de19be
--- /dev/null
+++ b/sys/compat/ibcs2/Makefile
@@ -0,0 +1,11 @@
+# $OpenBSD: Makefile,v 1.1 1996/08/02 20:35:01 niklas Exp $
+
+DEP= syscalls.conf syscalls.master ../../kern/makesyscalls.sh
+OBJS= ibcs2_sysent.c ibcs2_syscalls.c ibcs2_syscall.h ibcs2_syscallargs.h
+
+${OBJS}: ${DEP}
+ -mv -f ibcs2_sysent.c ibcs2_sysent.c.bak
+ -mv -f ibcs2_syscalls.c ibcs2_syscalls.c.bak
+ -mv -f ibcs2_syscall.h ibcs2_syscall.h.bak
+ -mv -f ibcs2_syscallargs.h ibcs2_syscallargs.h.bak
+ sh ../../kern/makesyscalls.sh syscalls.conf syscalls.master
diff --git a/sys/compat/ibcs2/TODO b/sys/compat/ibcs2/TODO
index ddfa3362424..1c3f9bc9768 100644
--- a/sys/compat/ibcs2/TODO
+++ b/sys/compat/ibcs2/TODO
@@ -1,3 +1,4 @@
+$OpenBSD: TODO,v 1.2 1996/08/02 20:35:01 niklas Exp $
$NetBSD: TODO,v 1.3 1995/03/14 15:12:17 scottb Exp $
* handle directory reads for filenames > 14 char
diff --git a/sys/compat/ibcs2/files.ibcs2 b/sys/compat/ibcs2/files.ibcs2
index 3ba153a95be..d4f7c73a36b 100644
--- a/sys/compat/ibcs2/files.ibcs2
+++ b/sys/compat/ibcs2/files.ibcs2
@@ -1,3 +1,4 @@
+# $OpenBSD: files.ibcs2,v 1.2 1996/08/02 20:35:02 niklas Exp $
# $NetBSD: files.ibcs2,v 1.3 1995/08/14 01:34:09 mycroft Exp $
#
# Config.new file description for machine-independent IBCS-2 compat code.
diff --git a/sys/compat/ibcs2/ibcs2_dirent.h b/sys/compat/ibcs2/ibcs2_dirent.h
index a54165732fe..29a0dcff1d0 100644
--- a/sys/compat/ibcs2/ibcs2_dirent.h
+++ b/sys/compat/ibcs2/ibcs2_dirent.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_dirent.h,v 1.2 1996/08/02 20:35:02 niklas Exp $ */
/* $NetBSD: ibcs2_dirent.h,v 1.3 1995/10/09 11:23:57 mycroft Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_errno.c b/sys/compat/ibcs2/ibcs2_errno.c
index ec84dd24390..b4bfea0922a 100644
--- a/sys/compat/ibcs2/ibcs2_errno.c
+++ b/sys/compat/ibcs2/ibcs2_errno.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_errno.c,v 1.3 1996/08/02 20:35:03 niklas Exp $ */
/* $NetBSD: ibcs2_errno.c,v 1.2 1996/05/03 17:05:16 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_errno.h b/sys/compat/ibcs2/ibcs2_errno.h
index 501df05bdab..42b5d0fa539 100644
--- a/sys/compat/ibcs2/ibcs2_errno.h
+++ b/sys/compat/ibcs2/ibcs2_errno.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_errno.h,v 1.3 1996/08/02 20:35:03 niklas Exp $ */
/* $NetBSD: ibcs2_errno.h,v 1.2 1996/05/03 17:05:18 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_exec.c b/sys/compat/ibcs2/ibcs2_exec.c
index 03081f49917..32121f88b95 100644
--- a/sys/compat/ibcs2/ibcs2_exec.c
+++ b/sys/compat/ibcs2/ibcs2_exec.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_exec.c,v 1.3 1996/08/02 20:35:04 niklas Exp $ */
/* $NetBSD: ibcs2_exec.c,v 1.11 1996/05/03 17:05:19 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_exec.h b/sys/compat/ibcs2/ibcs2_exec.h
index 8af9491b77f..7e33c700544 100644
--- a/sys/compat/ibcs2/ibcs2_exec.h
+++ b/sys/compat/ibcs2/ibcs2_exec.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_exec.h,v 1.2 1996/08/02 20:35:05 niklas Exp $ */
/* $NetBSD: ibcs2_exec.h,v 1.4 1995/03/14 15:12:24 scottb Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_fcntl.c b/sys/compat/ibcs2/ibcs2_fcntl.c
index 14681ae2d3b..1c0314522b3 100644
--- a/sys/compat/ibcs2/ibcs2_fcntl.c
+++ b/sys/compat/ibcs2/ibcs2_fcntl.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_fcntl.c,v 1.4 1996/08/02 20:35:05 niklas Exp $ */
/* $NetBSD: ibcs2_fcntl.c,v 1.6 1996/05/03 17:05:20 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_fcntl.h b/sys/compat/ibcs2/ibcs2_fcntl.h
index b75537cb66f..4aef0fb7a14 100644
--- a/sys/compat/ibcs2/ibcs2_fcntl.h
+++ b/sys/compat/ibcs2/ibcs2_fcntl.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_fcntl.h,v 1.2 1996/08/02 20:35:06 niklas Exp $ */
/* $NetBSD: ibcs2_fcntl.h,v 1.2 1994/10/26 02:52:54 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_grp.h b/sys/compat/ibcs2/ibcs2_grp.h
index 587101f743f..6a453d10b6c 100644
--- a/sys/compat/ibcs2/ibcs2_grp.h
+++ b/sys/compat/ibcs2/ibcs2_grp.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_grp.h,v 1.2 1996/08/02 20:35:06 niklas Exp $ */
/* $NetBSD: ibcs2_grp.h,v 1.2 1994/10/26 02:52:55 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_ioctl.c b/sys/compat/ibcs2/ibcs2_ioctl.c
index 2da1fbfc785..d5d6a1f5552 100644
--- a/sys/compat/ibcs2/ibcs2_ioctl.c
+++ b/sys/compat/ibcs2/ibcs2_ioctl.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_ioctl.c,v 1.4 1996/08/02 20:35:07 niklas Exp $ */
/* $NetBSD: ibcs2_ioctl.c,v 1.11 1996/05/03 17:05:22 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_ipc.c b/sys/compat/ibcs2/ibcs2_ipc.c
index 3744170d313..5b07fa40f3c 100644
--- a/sys/compat/ibcs2/ibcs2_ipc.c
+++ b/sys/compat/ibcs2/ibcs2_ipc.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_ipc.c,v 1.3 1996/08/02 20:35:07 niklas Exp $ */
/* $NetBSD: ibcs2_ipc.c,v 1.6 1996/05/03 17:05:23 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_mount.h b/sys/compat/ibcs2/ibcs2_mount.h
index d1b9aaaedc2..6204242e4f7 100644
--- a/sys/compat/ibcs2/ibcs2_mount.h
+++ b/sys/compat/ibcs2/ibcs2_mount.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_mount.h,v 1.2 1996/08/02 20:35:08 niklas Exp $ */
/* $NetBSD: ibcs2_mount.h,v 1.2 1994/10/26 02:53:00 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_pwd.h b/sys/compat/ibcs2/ibcs2_pwd.h
index 5a845ef580e..d3b49af675a 100644
--- a/sys/compat/ibcs2/ibcs2_pwd.h
+++ b/sys/compat/ibcs2/ibcs2_pwd.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_pwd.h,v 1.2 1996/08/02 20:35:08 niklas Exp $ */
/* $NetBSD: ibcs2_pwd.h,v 1.2 1994/10/26 02:53:01 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_signal.c b/sys/compat/ibcs2/ibcs2_signal.c
index 5ff7ddfc5cd..c0400029721 100644
--- a/sys/compat/ibcs2/ibcs2_signal.c
+++ b/sys/compat/ibcs2/ibcs2_signal.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_signal.c,v 1.3 1996/08/02 20:35:09 niklas Exp $ */
/* $NetBSD: ibcs2_signal.c,v 1.8 1996/05/03 17:05:27 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_signal.h b/sys/compat/ibcs2/ibcs2_signal.h
index 44cc6bf8a27..b425a2990ee 100644
--- a/sys/compat/ibcs2/ibcs2_signal.h
+++ b/sys/compat/ibcs2/ibcs2_signal.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_signal.h,v 1.3 1996/08/02 20:35:09 niklas Exp $ */
/* $NetBSD: ibcs2_signal.h,v 1.8 1996/05/03 17:05:28 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_socksys.c b/sys/compat/ibcs2/ibcs2_socksys.c
index 1004e840b45..3cee3ff2929 100644
--- a/sys/compat/ibcs2/ibcs2_socksys.c
+++ b/sys/compat/ibcs2/ibcs2_socksys.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_socksys.c,v 1.3 1996/08/02 20:35:10 niklas Exp $ */
/* $NetBSD: ibcs2_socksys.c,v 1.4 1996/05/03 17:05:29 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_socksys.h b/sys/compat/ibcs2/ibcs2_socksys.h
index fc2ccb3cdc2..d17ee5fa7de 100644
--- a/sys/compat/ibcs2/ibcs2_socksys.h
+++ b/sys/compat/ibcs2/ibcs2_socksys.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_socksys.h,v 1.3 1996/08/02 20:35:10 niklas Exp $ */
/* $NetBSD: ibcs2_socksys.h,v 1.2 1996/05/03 17:05:30 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_stat.c b/sys/compat/ibcs2/ibcs2_stat.c
index dc54a096745..d8fc2c0694c 100644
--- a/sys/compat/ibcs2/ibcs2_stat.c
+++ b/sys/compat/ibcs2/ibcs2_stat.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_stat.c,v 1.3 1996/08/02 20:35:11 niklas Exp $ */
/* $NetBSD: ibcs2_stat.c,v 1.5 1996/05/03 17:05:32 christos Exp $ */
/*
* Copyright (c) 1995 Scott Bartram
diff --git a/sys/compat/ibcs2/ibcs2_stat.h b/sys/compat/ibcs2/ibcs2_stat.h
index 2eb01027e0c..f129bb27659 100644
--- a/sys/compat/ibcs2/ibcs2_stat.h
+++ b/sys/compat/ibcs2/ibcs2_stat.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_stat.h,v 1.2 1996/08/02 20:35:11 niklas Exp $ */
/* $NetBSD: ibcs2_stat.h,v 1.2 1994/10/26 02:53:03 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_statfs.h b/sys/compat/ibcs2/ibcs2_statfs.h
index d6e0100c1eb..ca8ccd5508f 100644
--- a/sys/compat/ibcs2/ibcs2_statfs.h
+++ b/sys/compat/ibcs2/ibcs2_statfs.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_statfs.h,v 1.2 1996/08/02 20:35:12 niklas Exp $ */
/* $NetBSD: ibcs2_statfs.h,v 1.2 1994/10/26 02:53:06 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_stropts.h b/sys/compat/ibcs2/ibcs2_stropts.h
index a12df4a28a5..0ebd25d4527 100644
--- a/sys/compat/ibcs2/ibcs2_stropts.h
+++ b/sys/compat/ibcs2/ibcs2_stropts.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_stropts.h,v 1.3 1996/08/02 20:35:12 niklas Exp $ */
/* $NetBSD: ibcs2_stropts.h,v 1.2 1996/05/03 17:05:33 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_syscall.h b/sys/compat/ibcs2/ibcs2_syscall.h
index 6b6bdf0ccd2..9af275d3da5 100644
--- a/sys/compat/ibcs2/ibcs2_syscall.h
+++ b/sys/compat/ibcs2/ibcs2_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp
*/
#define IBCS2_SYS_syscall 0
diff --git a/sys/compat/ibcs2/ibcs2_syscallargs.h b/sys/compat/ibcs2/ibcs2_syscallargs.h
index b82aa343256..09d99d19ccc 100644
--- a/sys/compat/ibcs2/ibcs2_syscallargs.h
+++ b/sys/compat/ibcs2/ibcs2_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.8 1996/01/07 06:09:43 mycroft Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -255,9 +255,9 @@ struct ibcs2_sys_putmsg_args {
syscallarg(int) flags;
};
-struct ibcs2_sys_poll_args {
- syscallarg(struct ibcs2_pollfd *) fds;
- syscallarg(long) nfds;
+struct sys_poll_args {
+ syscallarg(struct pollfd *) fds;
+ syscallarg(unsigned long) nfds;
syscallarg(int) timeout;
};
@@ -423,7 +423,7 @@ int ibcs2_sys_getdents __P((struct proc *, void *, register_t *));
int ibcs2_sys_sysfs __P((struct proc *, void *, register_t *));
int ibcs2_sys_getmsg __P((struct proc *, void *, register_t *));
int ibcs2_sys_putmsg __P((struct proc *, void *, register_t *));
-int ibcs2_sys_poll __P((struct proc *, void *, register_t *));
+int sys_poll __P((struct proc *, void *, register_t *));
int ibcs2_sys_symlink __P((struct proc *, void *, register_t *));
int ibcs2_sys_lstat __P((struct proc *, void *, register_t *));
int ibcs2_sys_readlink __P((struct proc *, void *, register_t *));
diff --git a/sys/compat/ibcs2/ibcs2_syscalls.c b/sys/compat/ibcs2/ibcs2_syscalls.c
index 35de582e26a..8e713625ed7 100644
--- a/sys/compat/ibcs2/ibcs2_syscalls.c
+++ b/sys/compat/ibcs2/ibcs2_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp
*/
char *ibcs2_syscallnames[] = {
diff --git a/sys/compat/ibcs2/ibcs2_sysent.c b/sys/compat/ibcs2/ibcs2_sysent.c
index 80bf5d422e5..f82f9e43fb0 100644
--- a/sys/compat/ibcs2/ibcs2_sysent.c
+++ b/sys/compat/ibcs2/ibcs2_sysent.c
@@ -2,13 +2,14 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/signal.h>
#include <sys/mount.h>
+#include <sys/poll.h>
#include <sys/syscallargs.h>
#include <compat/ibcs2/ibcs2_types.h>
#include <compat/ibcs2/ibcs2_signal.h>
@@ -225,8 +226,8 @@ struct sysent ibcs2_sysent[] = {
ibcs2_sys_getmsg }, /* 85 = getmsg */
{ 4, s(struct ibcs2_sys_putmsg_args),
ibcs2_sys_putmsg }, /* 86 = putmsg */
- { 3, s(struct ibcs2_sys_poll_args),
- ibcs2_sys_poll }, /* 87 = poll */
+ { 3, s(struct sys_poll_args),
+ sys_poll }, /* 87 = poll */
{ 0, 0,
sys_nosys }, /* 88 = unimplemented */
{ 0, 0,
diff --git a/sys/compat/ibcs2/ibcs2_sysi86.h b/sys/compat/ibcs2/ibcs2_sysi86.h
index 7cbf9b9f9df..91e46a8d9a9 100644
--- a/sys/compat/ibcs2/ibcs2_sysi86.h
+++ b/sys/compat/ibcs2/ibcs2_sysi86.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_sysi86.h,v 1.2 1996/08/02 20:35:14 niklas Exp $ */
/* $NetBSD: ibcs2_sysi86.h,v 1.1 1996/01/06 03:23:54 scottb Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_termios.h b/sys/compat/ibcs2/ibcs2_termios.h
index 35602cf999d..0b9d1165efb 100644
--- a/sys/compat/ibcs2/ibcs2_termios.h
+++ b/sys/compat/ibcs2/ibcs2_termios.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_termios.h,v 1.2 1996/08/02 20:35:15 niklas Exp $ */
/* $NetBSD: ibcs2_termios.h,v 1.3 1994/10/26 02:53:07 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_time.h b/sys/compat/ibcs2/ibcs2_time.h
index a3b669b6ae3..986ab059121 100644
--- a/sys/compat/ibcs2/ibcs2_time.h
+++ b/sys/compat/ibcs2/ibcs2_time.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_time.h,v 1.2 1996/08/02 20:35:15 niklas Exp $ */
/* $NetBSD: ibcs2_time.h,v 1.2 1994/10/26 02:53:08 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_timeb.h b/sys/compat/ibcs2/ibcs2_timeb.h
index 26650e2a946..6c39650a668 100644
--- a/sys/compat/ibcs2/ibcs2_timeb.h
+++ b/sys/compat/ibcs2/ibcs2_timeb.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_timeb.h,v 1.3 1996/08/02 20:35:16 niklas Exp $ */
/* $NetBSD: ibcs2_timeb.h,v 1.2 1996/05/03 17:05:34 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_types.h b/sys/compat/ibcs2/ibcs2_types.h
index 305a1fc6f44..e98ece7f35a 100644
--- a/sys/compat/ibcs2/ibcs2_types.h
+++ b/sys/compat/ibcs2/ibcs2_types.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_types.h,v 1.2 1996/08/02 20:35:16 niklas Exp $ */
/* $NetBSD: ibcs2_types.h,v 1.5 1995/08/14 01:11:54 mycroft Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_unistd.h b/sys/compat/ibcs2/ibcs2_unistd.h
index 1a0dd669412..011dd594ea0 100644
--- a/sys/compat/ibcs2/ibcs2_unistd.h
+++ b/sys/compat/ibcs2/ibcs2_unistd.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_unistd.h,v 1.2 1996/08/02 20:35:17 niklas Exp $ */
/* $NetBSD: ibcs2_unistd.h,v 1.2 1994/10/26 02:53:11 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_ustat.h b/sys/compat/ibcs2/ibcs2_ustat.h
index 03c71463591..53534b2e9b4 100644
--- a/sys/compat/ibcs2/ibcs2_ustat.h
+++ b/sys/compat/ibcs2/ibcs2_ustat.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_ustat.h,v 1.2 1996/08/02 20:35:17 niklas Exp $ */
/* $NetBSD: ibcs2_ustat.h,v 1.2 1994/10/26 02:53:13 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_util.h b/sys/compat/ibcs2/ibcs2_util.h
index 167550d91ba..d0e91e370d1 100644
--- a/sys/compat/ibcs2/ibcs2_util.h
+++ b/sys/compat/ibcs2/ibcs2_util.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_util.h,v 1.2 1996/08/02 20:35:18 niklas Exp $ */
/* $NetBSD: ibcs2_util.h,v 1.2 1995/06/24 20:19:06 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_utime.h b/sys/compat/ibcs2/ibcs2_utime.h
index 1dd7fdfed6c..27a1240a77c 100644
--- a/sys/compat/ibcs2/ibcs2_utime.h
+++ b/sys/compat/ibcs2/ibcs2_utime.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_utime.h,v 1.3 1996/08/02 20:35:18 niklas Exp $ */
/* $NetBSD: ibcs2_utime.h,v 1.2 1996/05/03 17:05:35 christos Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_utsname.h b/sys/compat/ibcs2/ibcs2_utsname.h
index 4f2ee68f7a9..118cd3e769c 100644
--- a/sys/compat/ibcs2/ibcs2_utsname.h
+++ b/sys/compat/ibcs2/ibcs2_utsname.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_utsname.h,v 1.2 1996/08/02 20:35:19 niklas Exp $ */
/* $NetBSD: ibcs2_utsname.h,v 1.2 1994/10/26 02:53:14 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/ibcs2_wait.h b/sys/compat/ibcs2/ibcs2_wait.h
index 215d31eeef3..05b9514d389 100644
--- a/sys/compat/ibcs2/ibcs2_wait.h
+++ b/sys/compat/ibcs2/ibcs2_wait.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: ibcs2_wait.h,v 1.2 1996/08/02 20:35:19 niklas Exp $ */
/* $NetBSD: ibcs2_wait.h,v 1.2 1994/10/26 02:53:16 cgd Exp $ */
/*
diff --git a/sys/compat/ibcs2/syscalls.conf b/sys/compat/ibcs2/syscalls.conf
index 7f46f443340..fef9325525a 100644
--- a/sys/compat/ibcs2/syscalls.conf
+++ b/sys/compat/ibcs2/syscalls.conf
@@ -1,3 +1,5 @@
+# $OpenBSD: syscalls.conf,v 1.2 1996/08/02 20:35:20 niklas Exp $
+
# syscalls.conf
sysnames="ibcs2_syscalls.c"