diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-07 10:00:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-07 10:00:04 +0000 |
commit | 26644e876ed70e2616f3ce74f401a6ead381b5a7 (patch) | |
tree | eb1802f7bee9c1d71d77cde1a44316f63ebed36b | |
parent | 2b33e5b0ff6caa9d5cb9fa169abefa6f07a6d9cf (diff) | |
download | glibc-26644e876ed70e2616f3ce74f401a6ead381b5a7.tar.gz glibc-26644e876ed70e2616f3ce74f401a6ead381b5a7.tar.xz glibc-26644e876ed70e2616f3ce74f401a6ead381b5a7.zip |
Update.
1998-09-07 09:58 Ulrich Drepper <drepper@cygnus.com> * math/tgmath.h (scalb): Only define for __USE_MISC or __USE_XOPEN_EXTENDED. Patch by Zack Weinberg.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | math/tgmath.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 7a55cfd2ad..49fc6aa979 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-09-07 09:58 Ulrich Drepper <drepper@cygnus.com> + + * math/tgmath.h (scalb): Only define for __USE_MISC or + __USE_XOPEN_EXTENDED. Patch by Zack Weinberg. + 1998-09-06 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * libio/stdio.h: Fix comment. diff --git a/math/tgmath.h b/math/tgmath.h index 307a124afc..b95d55be44 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) |