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/hppa/spmath/md.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hppa/spmath/md.h')
-rw-r--r-- | sys/arch/hppa/spmath/md.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/sys/arch/hppa/spmath/md.h b/sys/arch/hppa/spmath/md.h index 14215032c4f..9e7624a2732 100644 --- a/sys/arch/hppa/spmath/md.h +++ b/sys/arch/hppa/spmath/md.h @@ -1,4 +1,4 @@ -/* $OpenBSD: md.h,v 1.4 2001/03/29 03:58:18 mickey Exp $ */ +/* $OpenBSD: md.h,v 1.5 2002/03/14 01:26:32 millert Exp $ */ /* * Copyright 1996 1995 by Open Software Foundation, Inc. @@ -86,21 +86,21 @@ struct md_state { resultlo; /* low word of result */ }; -void divsfm __P((int, int, struct mdsfu_register *)); -void divsfr __P((int, int, struct mdsfu_register *)); -void divsim __P((int, int, struct mdsfu_register *)); -void divsir __P((int, int, struct mdsfu_register *)); +void divsfm(int, int, struct mdsfu_register *); +void divsfr(int, int, struct mdsfu_register *); +void divsim(int, int, struct mdsfu_register *); +void divsir(int, int, struct mdsfu_register *); -void divu __P((int, int, int, struct mdsfu_register *)); -void divufr __P((unsigned int, unsigned int, struct mdsfu_register *)); -void divuir __P((unsigned int, unsigned int, struct mdsfu_register *)); +void divu(int, int, int, struct mdsfu_register *); +void divufr(unsigned int, unsigned int, struct mdsfu_register *); +void divuir(unsigned int, unsigned int, struct mdsfu_register *); -void mpyaccs __P((int, int, struct mdsfu_register *)); -void mpyaccu __P((unsigned int, unsigned int, struct mdsfu_register *)); -void mpys __P((int, int, struct mdsfu_register *)); -void mpyscv __P((int, int, struct mdsfu_register *)); -void mpyu __P((unsigned int, unsigned int, struct mdsfu_register *)); -void mpyucv __P((unsigned int, unsigned int, struct mdsfu_register *)); +void mpyaccs(int, int, struct mdsfu_register *); +void mpyaccu(unsigned int, unsigned int, struct mdsfu_register *); +void mpys(int, int, struct mdsfu_register *); +void mpyscv(int, int, struct mdsfu_register *); +void mpyu(unsigned int, unsigned int, struct mdsfu_register *); +void mpyucv(unsigned int, unsigned int, struct mdsfu_register *); -int impys __P((int *, int *, struct mdsfu_register *)); -int impyu __P((int *, int *, struct mdsfu_register *)); +int impys(int *, int *, struct mdsfu_register *); +int impyu(int *, int *, struct mdsfu_register *); |