From: Ulrich Drepper Date: Thu, 20 Mar 1997 03:16:24 +0000 (+0000) Subject: Avoid whitespace before argument of macro call that is used as X-Git-Tag: cvs/glibc-2_0_2~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80e41ab46eb1bb43e08802ef4ce7cde07216b07f;p=thirdparty%2Fglibc.git Avoid whitespace before argument of macro call that is used as function name. --- 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