aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/strtod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/strtod.c')
-rw-r--r--src/stdlib/strtod.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/strtod.c b/src/stdlib/strtod.c
index 39b9daad..689426b0 100644
--- a/src/stdlib/strtod.c
+++ b/src/stdlib/strtod.c
@@ -28,3 +28,11 @@ long double strtold(const char *restrict s, char **restrict p)
{
return strtox(s, p, 2);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif