diff options
author | Paul Traina <pst@FreeBSD.org> | 1998-04-22 06:26:18 +0000 |
---|---|---|
committer | Paul Traina <pst@FreeBSD.org> | 1998-04-22 06:26:18 +0000 |
commit | d84b14105f34d8b1fa94987bc5a2e9efeeb32e38 (patch) | |
tree | 72ec85fa9d6ce0ede8a2e0f077097b29fd024782 /lib/msun | |
parent | 4419bba9fb8541da374d84d8a9e8ee77a9fe06fa (diff) |
Notes
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/src/math.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index d4fe9e693bdb7..8b8ba390c6c01 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -11,7 +11,7 @@ /* * from: @(#)fdlibm.h 5.1 93/09/24 - * $Id: math.h,v 1.4 1997/02/22 15:10:54 peter Exp $ + * $Id: math.h,v 1.5 1997/08/31 22:12:19 bde Exp $ */ #ifndef _MATH_H_ @@ -172,7 +172,7 @@ extern double scalbn __P((double, int)); /* * BSD math library entry points */ -extern double cabs(); +extern double cabs __P((double)); 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 (); +extern float cabsf __P((float)); extern float dremf __P((float, float)); extern float expm1f __P((float)); extern float log1pf __P((float)); |