mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
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.
This commit is contained in:
@ -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>
|
1998-09-06 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||||
|
|
||||||
* libio/stdio.h: Fix comment.
|
* libio/stdio.h: Fix comment.
|
||||||
|
@ -283,7 +283,9 @@
|
|||||||
#define remainder(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, remainder)
|
#define remainder(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, remainder)
|
||||||
|
|
||||||
/* Return X times (2 to the Nth power). */
|
/* 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)
|
#define scalb(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, scalb)
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Return X times (2 to the Nth power). */
|
/* Return X times (2 to the Nth power). */
|
||||||
#define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn)
|
#define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn)
|
||||||
|
Reference in New Issue
Block a user