summaryrefslogtreecommitdiff
path: root/sys/compat/ibcs2
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
commite63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch)
treec2aa960c67a99a878c8902943399029fa598683f /sys/compat/ibcs2
parent71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff)
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/compat/ibcs2')
-rw-r--r--sys/compat/ibcs2/ibcs2_misc.c4
-rw-r--r--sys/compat/ibcs2/syscalls.master6
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/ibcs2/ibcs2_misc.c b/sys/compat/ibcs2/ibcs2_misc.c
index 3b3137ba2c2..70462e15189 100644
--- a/sys/compat/ibcs2/ibcs2_misc.c
+++ b/sys/compat/ibcs2/ibcs2_misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ibcs2_misc.c,v 1.22 2002/03/14 01:26:50 millert Exp $ */
+/* $OpenBSD: ibcs2_misc.c,v 1.23 2002/03/14 03:16:03 millert Exp $ */
/* $NetBSD: ibcs2_misc.c,v 1.23 1997/01/15 01:37:49 perry Exp $ */
/*
@@ -1145,7 +1145,7 @@ xenix_sys_rdchk(p, v, retval)
SCARG(&sa, data) = stackgap_alloc(&sg, sizeof(int));
if ((error = sys_ioctl(p, &sa, retval)) != 0)
return error;
- *retval = (*((int*)SCARG(&sa, data))) ? 1 : 0;
+ *retval = (*((int *)SCARG(&sa, data))) ? 1 : 0;
return 0;
}
diff --git a/sys/compat/ibcs2/syscalls.master b/sys/compat/ibcs2/syscalls.master
index 70ca3f47c9f..35b75efbe68 100644
--- a/sys/compat/ibcs2/syscalls.master
+++ b/sys/compat/ibcs2/syscalls.master
@@ -1,4 +1,4 @@
- $OpenBSD: syscalls.master,v 1.7 1999/06/07 07:17:47 deraadt Exp $
+ $OpenBSD: syscalls.master,v 1.8 2002/03/14 03:16:03 millert Exp $
; $NetBSD: syscalls.master,v 1.10 1996/09/07 14:21:59 mycroft Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
@@ -58,11 +58,11 @@
11 STD { int ibcs2_sys_execv(char *path, char **argp); }
12 STD { int ibcs2_sys_chdir(char *path); }
13 STD { int ibcs2_sys_time(ibcs2_time_t *tp); }
-14 STD { int ibcs2_sys_mknod(char* path, int mode, int dev); }
+14 STD { int ibcs2_sys_mknod(char *path, int mode, int dev); }
15 STD { int ibcs2_sys_chmod(char *path, int mode); }
16 STD { int ibcs2_sys_chown(char *path, int uid, int gid); }
17 NOARGS { int sys_obreak(caddr_t nsize); }
-18 STD { int ibcs2_sys_stat(char* path, \
+18 STD { int ibcs2_sys_stat(char *path, \
struct ibcs2_stat *st); }
19 NOARGS { long compat_43_sys_lseek(int fd, long offset, \
int whence); }