diff options
author | obrien <obrien@FreeBSD.org> | 2002-03-21 23:54:04 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-03-21 23:54:04 +0000 |
commit | fd9d7ac0ed3b0196f0165675edd10f4568d1ce88 (patch) | |
tree | 797ad825cd6005b210c12cc519012e2266372988 /lib/msun/bsdsrc/mathimpl.h | |
parent | d0f7d014387d18db9910e1094a3d0696bfeccab6 (diff) | |
download | FreeBSD-src-fd9d7ac0ed3b0196f0165675edd10f4568d1ce88.zip FreeBSD-src-fd9d7ac0ed3b0196f0165675edd10f4568d1ce88.tar.gz |
Remove __P() usage.
Diffstat (limited to 'lib/msun/bsdsrc/mathimpl.h')
-rw-r--r-- | lib/msun/bsdsrc/mathimpl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/msun/bsdsrc/mathimpl.h b/lib/msun/bsdsrc/mathimpl.h index 6a2a37d..b9b0295 100644 --- a/lib/msun/bsdsrc/mathimpl.h +++ b/lib/msun/bsdsrc/mathimpl.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mathimpl.h 8.1 (Berkeley) 6/4/93 + * $FreeBSD$ */ #include <sys/cdefs.h> @@ -94,5 +95,5 @@ extern double __exp__E(); extern double __log__L(); struct Double {double a, b;}; -double __exp__D __P((double, double)); -struct Double __log__D __P((double)); +double __exp__D(double, double); +struct Double __log__D(double); |