diff options
| author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-02-23 08:10:22 +0000 |
|---|---|---|
| committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-02-23 08:10:22 +0000 |
| commit | 040ae6a6231128c06e707ea8370082cf6cd5bc69 (patch) | |
| tree | 288f4fe8b22224e06ba225c52e1fd9f7b4ed1269 | |
| parent | 6c1fd83dfb7cdadd6c5997980df01014bd1579cd (diff) | |
| download | uClibc-alpine-040ae6a6231128c06e707ea8370082cf6cd5bc69.tar.bz2 uClibc-alpine-040ae6a6231128c06e707ea8370082cf6cd5bc69.tar.xz | |
- export functions needed by C99 long-double macros
| -rw-r--r-- | libm/ldouble_wrappers.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libm/ldouble_wrappers.c b/libm/ldouble_wrappers.c index 1b0d10d7b..3567c61aa 100644 --- a/libm/ldouble_wrappers.c +++ b/libm/ldouble_wrappers.c @@ -541,6 +541,7 @@ int __fpclassifyl (long double x) { return __fpclassify ( (double) x ); } +libm_hidden_def(__fpclassifyl) #endif #ifdef L_finitel @@ -548,6 +549,7 @@ int __finitel (long double x) { return __finite ( (double)x ); } +libm_hidden_def(__finitel) #endif #ifdef L_signbitl @@ -555,6 +557,7 @@ int __signbitl (long double x) { return __signbitl ( (double)x ); } +libm_hidden_def(__signbitl) #endif #ifdef L_isnanl @@ -562,6 +565,7 @@ int __isnanl (long double x) { return __isnan ( (double)x ); } +libm_hidden_def(__isnanl) #endif #ifdef L_isinfl @@ -569,6 +573,7 @@ int __isinfl (long double x) { return __isinf ( (double)x ); } +libm_hidden_def(__isinfl) #endif #endif |
