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/m68k/include/profile.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/m68k/include/profile.h')
-rw-r--r-- | sys/arch/m68k/include/profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/include/profile.h b/sys/arch/m68k/include/profile.h index 9b463a1a33d..2a17085ec6e 100644 --- a/sys/arch/m68k/include/profile.h +++ b/sys/arch/m68k/include/profile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: profile.h,v 1.4 1997/01/27 20:34:15 deraadt Exp $ */ +/* $OpenBSD: profile.h,v 1.5 2002/03/14 01:26:34 millert Exp $ */ /* $NetBSD: profile.h,v 1.3 1995/03/26 17:08:37 briggs Exp $ */ /* @@ -39,7 +39,7 @@ #define _MCOUNT_DECL static __inline void _mcount #define MCOUNT \ -extern void mcount __P((void)) __asm("mcount"); void mcount() { \ +extern void mcount(void) __asm("mcount"); void mcount() { \ int selfpc, frompcindex; \ __asm("movl a6@(4),%0" : "=r" (selfpc)); \ __asm("movl a6@(0)@(4),%0" : "=r" (frompcindex)); \ |