diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-29 12:52:41 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-29 12:52:41 -0700 |
commit | 72befd5a680f050ca058ba33f179a9f4ec7f91db (patch) | |
tree | b8511fd90f2ba7e6ebe9a8ed864d978912ab495d /tests/runner.py | |
parent | 2e6686a51f0c1af7ffe365df8baa247d5118b1d1 (diff) | |
parent | 868ae0d8e5bed99d6fe44ee4f9cf288ef065a787 (diff) |
Merge pull request #1113 from waywardmonkeys/missing-stdint-includes
Include <stdint.h> to use int64_t.
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 056931cc..d6de16d2 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5931,6 +5931,7 @@ Pass: 0.000012 0.000012''') # i64 if not Settings.USE_TYPED_ARRAYS == 2: return self.skip('64-bit sscanf only supported in ta2') src = r''' + #include <stdint.h> #include <stdio.h> int main(){ @@ -5990,6 +5991,7 @@ Pass: 0.000012 0.000012''') if Settings.USE_TYPED_ARRAYS != 2: return self.skip("need ta2 for full i64") src = r''' + #include <stdint.h> #include <stdio.h> int main(){ |