diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-29 21:58:42 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-29 22:12:36 +0700 |
commit | 868ae0d8e5bed99d6fe44ee4f9cf288ef065a787 (patch) | |
tree | 412c42c038b0514fd0d67936bcd4c86ad3ee73b3 | |
parent | 5ba1a0e94fdb1f230efa34bfe5e2725ff7abef39 (diff) |
Include <stdint.h> to use int64_t.
-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 4092d3de..c7e1042d 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(){ |