diff options
author | Joseph Myers <joseph@codesourcery.com> | 2016-12-20 21:23:04 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2016-12-20 21:23:04 +0000 |
commit | 60c07b058f9fe34e2ffd7e02b20657db6f5f68d4 (patch) | |
tree | 89d5e7e303b2c5525c0946684ecffc5c0d1275af /math | |
parent | 06fea2257dd93aa813f9a8a6ef09c0dc9ee5744d (diff) | |
download | glibc-60c07b058f9fe34e2ffd7e02b20657db6f5f68d4.zip glibc-60c07b058f9fe34e2ffd7e02b20657db6f5f68d4.tar.gz glibc-60c07b058f9fe34e2ffd7e02b20657db6f5f68d4.tar.bz2 |
Add preprocessor indentation for llogb macro in tgmath.h.
* math/tgmath.h [__GLIBC_USE (IEC_60559_BFP_EXT)] (llogb): Add
preprocessor indentation inside #if.
Diffstat (limited to 'math')
-rw-r--r-- | math/tgmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/tgmath.h b/math/tgmath.h index 0f9216c..8a895a5 100644 --- a/math/tgmath.h +++ b/math/tgmath.h @@ -439,7 +439,7 @@ #if __GLIBC_USE (IEC_60559_BFP_EXT) /* Like ilogb, but returning long int. */ -#define llogb(Val) __TGMATH_UNARY_REAL_RET_ONLY (Val, long int, llogb) +# define llogb(Val) __TGMATH_UNARY_REAL_RET_ONLY (Val, long int, llogb) /* Return value with maximum magnitude. */ # define fmaxmag(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmaxmag) |