summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2005-01-31 21:35:51 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2005-01-31 21:35:51 +0000
commit989f704d7675b2206bd048631d7deece5db11c37 (patch)
tree3e2c04010c683159cdb791a050a79894fd4d8d2d /sys/arch/mips64/include
parent763a2d1edefc9619d982f97b2fff7aedcae67503 (diff)
Un-__P.
ok pefo@
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r--sys/arch/mips64/include/db_machdep.h8
-rw-r--r--sys/arch/mips64/include/float.h4
-rw-r--r--sys/arch/mips64/include/param.h6
-rw-r--r--sys/arch/mips64/include/rm7000.h14
-rw-r--r--sys/arch/mips64/include/trap.h4
5 files changed, 18 insertions, 18 deletions
diff --git a/sys/arch/mips64/include/db_machdep.h b/sys/arch/mips64/include/db_machdep.h
index 1c2885237ce..a0ee99e5b3e 100644
--- a/sys/arch/mips64/include/db_machdep.h
+++ b/sys/arch/mips64/include/db_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.h,v 1.6 2005/01/04 21:14:35 espie Exp $ */
+/* $OpenBSD: db_machdep.h,v 1.7 2005/01/31 21:35:49 grange Exp $ */
/*
* Copyright (c) 1998-2003 Opsycon AB (www.opsycon.se)
@@ -45,7 +45,7 @@ typedef vaddr_t db_addr_t;
#define SOFTWARE_SSTEP /* Need software single step */
#define SOFTWARE_SSTEP_EMUL /* next_instr_address() emulates 100% */
-db_addr_t next_instr_address __P((db_addr_t, boolean_t));
+db_addr_t next_instr_address(db_addr_t, boolean_t);
#define BKPT_SIZE (4)
#define BKPT_SET(ins) (BREAK_DDB)
#define DB_VALID_BREAKPOINT(addr) (((addr) & 3) == 0)
@@ -72,7 +72,7 @@ db_addr_t next_instr_address __P((db_addr_t, boolean_t));
#define inst_load(i) (db_inst_type(i) == IT_LOAD)
#define inst_store(i) (db_inst_type(i) == IT_STORE)
-int db_inst_type __P((int));
-void db_machine_init __P((void));
+int db_inst_type(int);
+void db_machine_init(void);
#endif /* !_MIPS_DB_MACHDEP_H_ */
diff --git a/sys/arch/mips64/include/float.h b/sys/arch/mips64/include/float.h
index d054887c6ad..dbfef1fdbe4 100644
--- a/sys/arch/mips64/include/float.h
+++ b/sys/arch/mips64/include/float.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: float.h,v 1.1 2004/08/06 20:56:01 pefo Exp $ */
+/* $OpenBSD: float.h,v 1.2 2005/01/31 21:35:49 grange Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -41,7 +41,7 @@
#include <sys/cdefs.h>
__BEGIN_DECLS
-int __flt_rounds __P((void));
+int __flt_rounds(void);
__END_DECLS
#define FLT_RADIX 2 /* b */
diff --git a/sys/arch/mips64/include/param.h b/sys/arch/mips64/include/param.h
index d4be80923e1..7b3ca59fae1 100644
--- a/sys/arch/mips64/include/param.h
+++ b/sys/arch/mips64/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.5 2004/09/17 18:31:51 miod Exp $ */
+/* $OpenBSD: param.h,v 1.6 2005/01/31 21:35:49 grange Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -153,8 +153,8 @@
#ifndef _LOCORE
#define DELAY(n) delay(n)
-void delay __P((int));
-void nanodelay __P((int));
+void delay(int);
+void nanodelay(int);
#endif
#else /* !_KERNEL */
diff --git a/sys/arch/mips64/include/rm7000.h b/sys/arch/mips64/include/rm7000.h
index 86db8feb2d9..0d7eccbb332 100644
--- a/sys/arch/mips64/include/rm7000.h
+++ b/sys/arch/mips64/include/rm7000.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rm7000.h,v 1.1 2005/01/18 15:03:38 grange Exp $ */
+/* $OpenBSD: rm7000.h,v 1.2 2005/01/31 21:35:49 grange Exp $ */
/*
* Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -87,12 +87,12 @@
#ifdef _KERNEL
__BEGIN_DECLS
-int rm7k_perfcntr __P((int, long, long, long));
-void rm7k_perfintr __P((struct trap_frame *));
-int rm7k_watchintr __P((struct trap_frame *));
-void cp0_setperfcount __P((int));
-void cp0_setperfctrl __P((int));
-int cp0_getperfcount __P((void));
+int rm7k_perfcntr(int, long, long, long);
+void rm7k_perfintr(struct trap_frame *);
+int rm7k_watchintr(struct trap_frame *);
+void cp0_setperfcount(int);
+void cp0_setperfctrl(int);
+int cp0_getperfcount(void);
__END_DECLS
#endif /* _KERNEL */
diff --git a/sys/arch/mips64/include/trap.h b/sys/arch/mips64/include/trap.h
index b2a179fd52e..485fd3732e7 100644
--- a/sys/arch/mips64/include/trap.h
+++ b/sys/arch/mips64/include/trap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.h,v 1.4 2004/10/08 07:13:44 grange Exp $ */
+/* $OpenBSD: trap.h,v 1.5 2005/01/31 21:35:49 grange Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -113,7 +113,7 @@ struct trapdebug { /* trap history buffer for debugging */
#define TRAPSIZE 10 /* Trap log buffer length */
extern struct trapdebug trapdebug[TRAPSIZE], *trp;
-void trapDump __P((char *msg));
+void trapDump(char *msg);
#else