diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-11-19 23:02:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-11-19 23:02:54 +0000 |
commit | e5000c7fc11f6b5bbc177aa1aca7b4969a3f7910 (patch) | |
tree | 07ccbf9daa829a738dcbfcf4e7736cd1d4591748 /math | |
parent | 6e17e42224805f04fa51d748af1edbe371204066 (diff) | |
download | glibc-e5000c7fc11f6b5bbc177aa1aca7b4969a3f7910.tar.gz glibc-e5000c7fc11f6b5bbc177aa1aca7b4969a3f7910.tar.xz glibc-e5000c7fc11f6b5bbc177aa1aca7b4969a3f7910.zip |
Remove declaration of infnan and cabs.
Diffstat (limited to 'math')
-rw-r--r-- | math/mathcalls.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/math/mathcalls.h b/math/mathcalls.h index 213e089316..2491d30a2a 100644 --- a/math/mathcalls.h +++ b/math/mathcalls.h @@ -152,14 +152,6 @@ __MATHDECL (int,isinf,, (_Mdouble_ __value)); /* Return nonzero if VALUE is finite and not NaN. */ __MATHDECL (int,finite,, (_Mdouble_ __value)); -/* Deal with an infinite or NaN result. - If ERROR is ERANGE, result is +Inf; - if ERROR is - ERANGE, result is -Inf; - otherwise result is NaN. - This will set `errno' to either ERANGE or EDOM, - and may return an infinity or NaN, or may do something else. */ -__MATHCALL (infnan,, (int __error)); - /* Return X with its signed changed to Y's. */ __MATHCALL (copysign,, (_Mdouble_ __x, _Mdouble_ __y)); @@ -169,15 +161,6 @@ __MATHCALL (scalbn,, (_Mdouble_ __x, int __n)); /* Return the remainder of X/Y. */ __MATHCALL (drem,, (_Mdouble_ __x, _Mdouble_ __y)); -struct __MATH_PRECNAME(__cabs_complex,) -{ - _Mdouble_ x, y; -}; - -/* Return `sqrt(X*X + Y*Y)'. */ -__MATHCALL (cabs,, (struct __MATH_PRECNAME(__cabs_complex,))); - - /* Return the fractional part of X after dividing out `ilogb (X)'. */ __MATHCALL (significand,, (_Mdouble_ __x)); #endif /* Use misc. */ |