diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-15 21:58:59 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-15 21:58:59 -0800 |
commit | 8b14e998c1f2a27dcd1d0b67af85f1637612aa5b (patch) | |
tree | 99ef75fca63c1eb798d0df556cf9508dc90f9c2c /tests | |
parent | 6259358a5a125b64a90651ab1ee535e919339b68 (diff) |
atof
Diffstat (limited to 'tests')
-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; } ''' |