summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stdlib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stdlib.c b/stdlib.c
index 525a416..c66aa92 100644
--- a/stdlib.c
+++ b/stdlib.c
@@ -30,5 +30,7 @@ void test_stdlib_h(void)
test_long_equals(strtol("zzzzzzzzzzzzzzzzzzzz", NULL, 36), LONG_MAX);
test_long_equals(strtol("-zzzzzzzzzzzzzzzzzzzz", NULL, 36), LONG_MIN);
+ test_double(strtod("1.5", NULL), 1.5);
+
testing_end();
}