diff options
author | kevlo <kevlo@FreeBSD.org> | 2007-03-21 03:28:16 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2007-03-21 03:28:16 +0000 |
commit | 44a4513fbb23c88c7e68606d39119590d7a81382 (patch) | |
tree | 29defe2cf13421c7f121b81722519e11f57b8fad /sys/arm/include/undefined.h | |
parent | e7375967bae55c12e7d824e18dcfe8832bdd9f4c (diff) | |
download | FreeBSD-src-44a4513fbb23c88c7e68606d39119590d7a81382.zip FreeBSD-src-44a4513fbb23c88c7e68606d39119590d7a81382.tar.gz |
Remove __P
Diffstat (limited to 'sys/arm/include/undefined.h')
-rw-r--r-- | sys/arm/include/undefined.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arm/include/undefined.h b/sys/arm/include/undefined.h index 9460f70..6b64d1d 100644 --- a/sys/arm/include/undefined.h +++ b/sys/arm/include/undefined.h @@ -52,7 +52,7 @@ #include <sys/queue.h> -typedef int (*undef_handler_t) __P((unsigned int, unsigned int, trapframe_t *, int)); +typedef int (*undef_handler_t) (unsigned int, unsigned int, trapframe_t *, int); #define FP_COPROC 1 #define FP_COPROC2 2 @@ -60,9 +60,9 @@ typedef int (*undef_handler_t) __P((unsigned int, unsigned int, trapframe_t *, i /* Prototypes for undefined.c */ -void *install_coproc_handler __P((int, undef_handler_t)); -void remove_coproc_handler __P((void *)); -void undefined_init __P((void)); +void *install_coproc_handler (int, undef_handler_t); +void remove_coproc_handler (void *); +void undefined_init (void); /* * XXX Stuff below here is for use before malloc() is available. Most code @@ -78,7 +78,7 @@ struct undefined_handler { * Handlers installed using install_coproc_handler_static shouldn't be * removed. */ -void install_coproc_handler_static __P((int, struct undefined_handler *)); +void install_coproc_handler_static (int, struct undefined_handler *); /* Calls up to undefined.c from trap handlers */ void undefinedinstruction(struct trapframe *); |