diff options
author | pst <pst@FreeBSD.org> | 1998-04-23 04:44:08 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1998-04-23 04:44:08 +0000 |
commit | b99377bfd2ac83603b373e2b892e0859afbf6dcd (patch) | |
tree | ce52633a8df5e1d25616c2ca3c59625f065ea28a | |
parent | a325280132deb1b8e652575e3a616410a5d732ff (diff) | |
download | FreeBSD-src-b99377bfd2ac83603b373e2b892e0859afbf6dcd.zip FreeBSD-src-b99377bfd2ac83603b373e2b892e0859afbf6dcd.tar.gz |
Back out last change
-rw-r--r-- | lib/msun/src/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 8b8ba39..14a80e3 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -172,7 +172,7 @@ extern double scalbn __P((double, int)); /* * BSD math library entry points */ -extern double cabs __P((double)); +extern double cabs(); extern double drem __P((double, double)); extern double expm1 __P((double)); extern double log1p __P((double)); @@ -255,7 +255,7 @@ extern float scalbnf __P((float, int)); /* * float versions of BSD math library entry points */ -extern float cabsf __P((float)); +extern float cabsf (); extern float dremf __P((float, float)); extern float expm1f __P((float)); extern float log1pf __P((float)); |