diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-02 14:51:48 +0000 | 
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-02 14:51:48 +0000 | 
| commit | 168b72be28dc6a1ef14d5672dd97616a10af294c (patch) | |
| tree | 45d1c2202eb813a64579fd5b2803b0bd1bfae339 /libm/ldouble_wrappers.c | |
| parent | f82635e74a7e174f71f955eaa4f5dc788e596cc0 (diff) | |
| download | uClibc-alpine-168b72be28dc6a1ef14d5672dd97616a10af294c.tar.bz2 uClibc-alpine-168b72be28dc6a1ef14d5672dd97616a10af294c.tar.xz  | |
libm/ldouble_wrappers.c: add libm_hidden_def's to fix testsuite build
test/Rules.mak: don't pass target options to host build
test/math/basic-test.c: fix test build error
patching file test/unistd/errno.c: fix test build warning
Diffstat (limited to 'libm/ldouble_wrappers.c')
| -rw-r--r-- | libm/ldouble_wrappers.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/libm/ldouble_wrappers.c b/libm/ldouble_wrappers.c index 69db91ebf..1af6b1b9f 100644 --- a/libm/ldouble_wrappers.c +++ b/libm/ldouble_wrappers.c @@ -565,6 +565,7 @@ int __isnanl (long double x)  {  	return __isnan ( (double)x );  } +libm_hidden_def(__isnanl)  #endif  #ifdef L_isinfl @@ -572,6 +573,7 @@ int __isinfl (long double x)  {  	return __isinf ( (double)x );  } +libm_hidden_def(__isinfl)  #endif  #endif  | 
