mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 16:50:07 +00:00
9ea01d93f7
18 lines
515 B
C
18 lines
515 B
C
#include <math_ldbl_opt.h>
|
|||
#undef weak_alias
|
|||
#define weak_alias(n,a)
|
|||
#undef hidden_def
|
|||
#define hidden_def(x)
|
|||
#define __finitel(arg) ___finitel(arg)
|
|||
#include <sysdeps/ieee754/ldbl-128/s_finitel.c>
|
|||
#undef __finitel
|
|||
hidden_ver (___finitel, __finitel)
|
|||
_weak_alias (___finitel, ____finitel)
|
|||
#ifdef IS_IN_libm
|
|||
long_double_symbol (libm, ____finitel, finitel);
|
|||
long_double_symbol (libm, ___finitel, __finitel);
|
|||
#else
|
|||
long_double_symbol (libc, ____finitel, finitel);
|
|||
long_double_symbol (libc, ___finitel, __finitel);
|
|||
#endif
|