diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-27 20:34:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-27 20:34:23 +0000 |
commit | 4877d47f7b5b3a6500cb143ee6a3910545d4b596 (patch) | |
tree | 9c076d0fd47425ecae2311e683a72eb3efa84460 /sys/arch/mvme88k/include | |
parent | 487b3e927ace5b154e5bf007759bb82afc1e0463 (diff) |
prototyping problems, PR#71, felix@mamba.pond.sub.org
Diffstat (limited to 'sys/arch/mvme88k/include')
-rw-r--r-- | sys/arch/mvme88k/include/profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/profile.h b/sys/arch/mvme88k/include/profile.h index c6203ab7424..095919c1ed7 100644 --- a/sys/arch/mvme88k/include/profile.h +++ b/sys/arch/mvme88k/include/profile.h @@ -31,13 +31,13 @@ * SUCH DAMAGE. * * from: @(#)profile.h 8.1 (Berkeley) 6/11/93 - * $Id: profile.h,v 1.2 1996/03/24 16:52:34 tholo Exp $ + * $Id: profile.h,v 1.3 1997/01/27 20:34:17 deraadt Exp $ */ #define _MCOUNT_DECL static inline void _mcount #define MCOUNT \ -extern void mcount() __asm("mcount"); \ +extern void mcount __P((void)) __asm("mcount"); \ void \ mcount() \ { \ |