From 26644e876ed70e2616f3ce74f401a6ead381b5a7 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 7 Sep 1998 10:00:04 +0000 Subject: Update. 1998-09-07 09:58 Ulrich Drepper * math/tgmath.h (scalb): Only define for __USE_MISC or __USE_XOPEN_EXTENDED. Patch by Zack Weinberg. --- math/tgmath.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'math/tgmath.h') diff --git a/math/tgmath.h b/math/tgmath.h index 307a124..b95d55b 100644 --- a/math/tgmath.h +++ b/math/tgmath.h @@ -283,7 +283,9 @@ #define remainder(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, remainder) /* Return X times (2 to the Nth power). */ +#if defined __USE_MISC || defined __USE_XOPEN_EXTENDED #define scalb(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, scalb) +#endif /* Return X times (2 to the Nth power). */ #define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn) -- cgit v1.1