From 80e41ab46eb1bb43e08802ef4ce7cde07216b07f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 20 Mar 1997 03:16:24 +0000 Subject: [PATCH] Avoid whitespace before argument of macro call that is used as function name. --- math/mathcalls.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/math/mathcalls.h b/math/mathcalls.h index ca2fe0c32a0..213e0893163 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 -- 2.47.2