summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/include
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/mvme68k/include
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/mvme68k/include')
-rw-r--r--sys/arch/mvme68k/include/autoconf.h6
-rw-r--r--sys/arch/mvme68k/include/cpu.h4
-rw-r--r--sys/arch/mvme68k/include/hpux_machdep.h20
-rw-r--r--sys/arch/mvme68k/include/intr.h4
-rw-r--r--sys/arch/mvme68k/include/pmap.h4
5 files changed, 19 insertions, 19 deletions
diff --git a/sys/arch/mvme68k/include/autoconf.h b/sys/arch/mvme68k/include/autoconf.h
index 1249e5122b1..55ce4ad0615 100644
--- a/sys/arch/mvme68k/include/autoconf.h
+++ b/sys/arch/mvme68k/include/autoconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.h,v 1.6 1997/03/31 00:23:58 downsj Exp $ */
+/* $OpenBSD: autoconf.h,v 1.7 2002/03/14 01:26:37 millert Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -66,7 +66,7 @@ struct device *bootdv; /* boot device */
/* PARTITIONSHIFT from disklabel.h */
#define PARTITIONMASK ((1 << PARTITIONSHIFT) - 1)
-void *mapiodev __P((void *pa, int size));
-void unmapiodev __P((void *kva, int size));
+void *mapiodev(void *pa, int size);
+void unmapiodev(void *kva, int size);
#endif
diff --git a/sys/arch/mvme68k/include/cpu.h b/sys/arch/mvme68k/include/cpu.h
index ff6d0b519ce..6c0c985301a 100644
--- a/sys/arch/mvme68k/include/cpu.h
+++ b/sys/arch/mvme68k/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.7 2000/01/06 03:21:43 smurph Exp $ */
+/* $OpenBSD: cpu.h,v 1.8 2002/03/14 01:26:37 millert Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -271,7 +271,7 @@ struct intrhand {
struct haltvec {
struct haltvec *hv_next;
- void (*hv_fn) __P((void));
+ void (*hv_fn)(void);
int hv_pri;
};
#endif
diff --git a/sys/arch/mvme68k/include/hpux_machdep.h b/sys/arch/mvme68k/include/hpux_machdep.h
index e9133eb543f..6ca49ae126d 100644
--- a/sys/arch/mvme68k/include/hpux_machdep.h
+++ b/sys/arch/mvme68k/include/hpux_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hpux_machdep.h,v 1.1 1997/03/31 00:24:02 downsj Exp $ */
+/* $OpenBSD: hpux_machdep.h,v 1.2 2002/03/14 01:26:37 millert Exp $ */
/* $NetBSD: hpux_machdep.h,v 1.6 1997/03/16 10:02:40 thorpej Exp $ */
/*-
@@ -66,15 +66,15 @@ struct hpuxsigcontext {
int _hsc_ap; /* pointer to hpuxsigstate */
};
-int hpux_cpu_makecmds __P((struct proc *, struct exec_package *));
-int hpux_cpu_vmcmd __P((struct proc *, struct exec_vmcmd *));
-void hpux_cpu_bsd_to_hpux_stat __P((struct stat *, struct hpux_stat *));
-void hpux_cpu_uname __P((struct hpux_utsname *));
-int hpux_cpu_sysconf_arch __P((void));
-int hpux_to_bsd_uoff __P((int *, int *, struct proc *));
+int hpux_cpu_makecmds(struct proc *, struct exec_package *);
+int hpux_cpu_vmcmd(struct proc *, struct exec_vmcmd *);
+void hpux_cpu_bsd_to_hpux_stat(struct stat *, struct hpux_stat *);
+void hpux_cpu_uname(struct hpux_utsname *);
+int hpux_cpu_sysconf_arch(void);
+int hpux_to_bsd_uoff(int *, int *, struct proc *);
-void hpux_sendsig __P((sig_t, int, int, u_long, int, union sigval));
-void hpux_setregs __P((struct proc *, struct exec_package *,
- u_long, register_t *));
+void hpux_sendsig(sig_t, int, int, u_long, int, union sigval);
+void hpux_setregs(struct proc *, struct exec_package *,
+ u_long, register_t *);
#endif /* ! _MVME68K_HPUX_MACHDEP_H_ */
diff --git a/sys/arch/mvme68k/include/intr.h b/sys/arch/mvme68k/include/intr.h
index 2045e781344..cd0c173bb3d 100644
--- a/sys/arch/mvme68k/include/intr.h
+++ b/sys/arch/mvme68k/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.4 2001/11/23 00:47:46 miod Exp $ */
+/* $OpenBSD: intr.h,v 1.5 2002/03/14 01:26:37 millert Exp $ */
/*
* Copyright (C) 2000 Steve Murphree, Jr.
* All rights reserved.
@@ -78,6 +78,6 @@ u_long allocate_sir __P((void (*proc)(), void *arg));
#define splx(s) (s & PSL_IPL ? _spl(s) : spl0())
/* locore.s */
-int spl0 __P((void));
+int spl0(void);
#endif /* _KERNEL */
#endif /* _MVME68K_INTR_H_ */
diff --git a/sys/arch/mvme68k/include/pmap.h b/sys/arch/mvme68k/include/pmap.h
index 9e32d5ed681..5ce273cca92 100644
--- a/sys/arch/mvme68k/include/pmap.h
+++ b/sys/arch/mvme68k/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.11 2002/02/22 22:45:34 miod Exp $ */
+/* $OpenBSD: pmap.h,v 1.12 2002/03/14 01:26:37 millert Exp $ */
#ifndef _MACHINE_PMAP_H_
#define _MACHINE_PMAP_H_
@@ -6,7 +6,7 @@
#include <m68k/pmap_motorola.h>
#ifdef _KERNEL
-void pmap_init_md __P((void));
+void pmap_init_md(void);
#define PMAP_INIT_MD() pmap_init_md()
#endif