Only build _strtodg_r on targets supporting a distinct long double type
* libc/stdlib/strtodg.c: Add ifdef to check _HAVE_LONG_DOUBLE and _LDBL_EQ_DBL. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
@ -39,6 +39,8 @@ THIS SOFTWARE.
|
||||
|
||||
#include "locale.h"
|
||||
|
||||
#if defined (_HAVE_LONG_DOUBLE) && !defined (_LDBL_EQ_DBL)
|
||||
|
||||
#define USE_LOCALE
|
||||
|
||||
static const int
|
||||
@ -1141,3 +1143,5 @@ _strtodg_r
|
||||
}
|
||||
return irv;
|
||||
}
|
||||
|
||||
#endif /* _HAVE_LONG_DOUBLE && !_LDBL_EQ_DBL */
|
||||
|
Reference in New Issue
Block a user