summaryrefslogtreecommitdiff
path: root/src/stdlib/strtold.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/strtold.c')
-rw-r--r--src/stdlib/strtold.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/stdlib/strtold.c b/src/stdlib/strtold.c
index 5bb5bf63..43fc77bd 100644
--- a/src/stdlib/strtold.c
+++ b/src/stdlib/strtold.c
@@ -1,10 +1,9 @@
-#if 0
-
#include <stdlib.h>
#include <float.h>
#include <ctype.h>
#include <errno.h>
#include <math.h>
+#include "_stdlib.h"
/** convert string to floating-point **/
@@ -17,6 +16,8 @@ long double strtold(const char * restrict nptr, char ** restrict endptr)
long double inf = INFINITY;
long double nan = NAN;
+ SIGNAL_SAFE(0);
+
#include "_strtod.h"
return ret;
@@ -42,6 +43,3 @@ RETURN(CONSTANT(-HUGE_VALL), converted value too small)
RETURN(VAR(a TYPE(long double)), the converted value)
STDC(199901)
*/
-
-
-#endif