summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-03-20 03:16:24 +0000
committerUlrich Drepper <drepper@redhat.com>1997-03-20 03:16:24 +0000
commit80e41ab46eb1bb43e08802ef4ce7cde07216b07f (patch)
tree33c7be622eddf2d2fef48068a1bc64d2c3eca1a8 /math
parentf47163fad39f55b785d8b9331bf6103f8a120745 (diff)
Avoid whitespace before argument of macro call that is used as
function name.
Diffstat (limited to 'math')
-rw-r--r--math/mathcalls.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/math/mathcalls.h b/math/mathcalls.h
index ca2fe0c32a..213e089316 100644
--- a/math/mathcalls.h
+++ b/math/mathcalls.h
@@ -147,10 +147,10 @@ __MATHCALL (fmod,, (_Mdouble_ __x, _Mdouble_ __y));
/* Return 0 if VALUE is finite or NaN, +1 if it
is +Infinity, -1 if it is -Infinity. */
-__MATHDECL (int, isinf,, (_Mdouble_ __value));
+__MATHDECL (int,isinf,, (_Mdouble_ __value));
/* Return nonzero if VALUE is finite and not NaN. */
-__MATHDECL (int, finite,, (_Mdouble_ __value));
+__MATHDECL (int,finite,, (_Mdouble_ __value));
/* Deal with an infinite or NaN result.
If ERROR is ERANGE, result is +Inf;
@@ -186,10 +186,10 @@ __MATHCALL (significand,, (_Mdouble_ __x));
#if defined(__USE_MISC) || defined(__USE_XOPEN)
/* Return nonzero if VALUE is not a number. */
-__MATHDECL (int, isnan,, (_Mdouble_ __value));
+__MATHDECL (int,isnan,, (_Mdouble_ __value));
/* Return the binary exponent of X, which must be nonzero. */
-__MATHDECL (int, ilogb,, (_Mdouble_ __x));
+__MATHDECL (int,ilogb,, (_Mdouble_ __x));
/* Return `sqrt(X*X + Y*Y)'. */
__MATHCALL (hypot,, (_Mdouble_ __x, _Mdouble_ __y));
@@ -207,8 +207,6 @@ __MATHCALL (y0,, (_Mdouble_));
__MATHCALL (y1,, (_Mdouble_));
__MATHCALL (yn,, (int, _Mdouble_));
-/* This variable is used by `gamma' and `lgamma'. */
-extern int signgam;
#ifdef __USE_MISC