diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/mvme88k/include/cpu.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/mvme88k/include/cpu.h')
-rw-r--r-- | sys/arch/mvme88k/include/cpu.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/mvme88k/include/cpu.h b/sys/arch/mvme88k/include/cpu.h index d5b62027ba3..11481c03263 100644 --- a/sys/arch/mvme88k/include/cpu.h +++ b/sys/arch/mvme88k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.17 2002/01/14 21:34:41 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.18 2002/03/14 01:26:39 millert Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Copyright (c) 1992, 1993 @@ -150,14 +150,14 @@ extern int want_resched; /* resched() was called */ #define signotify(p) (want_ast = 1) struct intrhand { - int (*ih_fn) __P((void *)); + int (*ih_fn)(void *); void *ih_arg; int ih_ipl; int ih_wantframe; struct intrhand *ih_next; }; -int intr_establish __P((int vec, struct intrhand *)); +int intr_establish(int vec, struct intrhand *); /* * return values for intr_establish() @@ -186,11 +186,11 @@ struct switchframe { /* This struct defines the machine dependant pointers */ struct md_p { - void (*clock_init_func) __P((void)); /* interval clock init function */ - void (*statclock_init_func) __P((void)); /* statistics clock init function */ - void (*delayclock_init_func) __P((void)); /* delay clock init function */ - void (*delay_func) __P((void)); /* delay clock function */ - void (*interrupt_func) __P((u_int, struct m88100_saved_state *)); /* interrupt func */ + void (*clock_init_func)(void); /* interval clock init function */ + void (*statclock_init_func)(void); /* statistics clock init function */ + void (*delayclock_init_func)(void); /* delay clock init function */ + void (*delay_func)(void); /* delay clock function */ + void (*interrupt_func)(u_int, struct m88100_saved_state *); /* interrupt func */ u_char *volatile intr_mask; u_char *volatile intr_ipl; u_char *volatile intr_src; @@ -199,8 +199,8 @@ struct md_p { extern struct md_p md; -int badvaddr __P((vm_offset_t va, int size)); -void nmihand __P((void *framep)); +int badvaddr(vm_offset_t va, int size); +void nmihand(void *framep); #endif /* _KERNEL */ #endif /* __MACHINE_CPU_H__ */ |