diff options
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index e908d294..a2ca7305 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2882,6 +2882,7 @@ at function.:blag src = r''' #include <stdio.h> #include <string.h> + #include <stdlib.h> int main () { #define CHECK(str) \ @@ -2896,6 +2897,8 @@ at function.:blag CHECK("en-r"); CHECK("en 3"); + printf("%f, %f\n", atof("1.234567"), atof("cheez")); + return 0; } ''' |