mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Fix typo in CMPLXL
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2012-01-08 Ulrich Drepper <drepper@gmail.com>
|
2012-01-08 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
|
* math/complex.h (CMPLXL): Fix typo.
|
||||||
|
|
||||||
* debug/Makefile (routines): Add poll_chk and ppoll_chk.
|
* debug/Makefile (routines): Add poll_chk and ppoll_chk.
|
||||||
* debug/Versions: Export __pool_chk and __ppoll_chk from libc for
|
* debug/Versions: Export __pool_chk and __ppoll_chk from libc for
|
||||||
GLIBC_2.16.
|
GLIBC_2.16.
|
||||||
|
@ -54,7 +54,7 @@ __BEGIN_DECLS
|
|||||||
# define CMPLX(x, y) __builtin_complex ((double) (x), (double) (y))
|
# define CMPLX(x, y) __builtin_complex ((double) (x), (double) (y))
|
||||||
# define CMPLXF(x, y) __builtin_complex ((float) (x), (float) (y))
|
# define CMPLXF(x, y) __builtin_complex ((float) (x), (float) (y))
|
||||||
# ifndef __NO_LONG_DOUBLE_MATH
|
# ifndef __NO_LONG_DOUBLE_MATH
|
||||||
# define CMPLXL(x, y) __builtin_complex ((double) (x), (double) (y))
|
# define CMPLXL(x, y) __builtin_complex ((long double) (x), (long double) (y))
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user