diff options
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); |