diff options
author | Dan Gohman <sunfish@mozilla.com> | 2014-03-04 00:09:11 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@mozilla.com> | 2014-03-04 00:09:11 -0800 |
commit | 84f01eb74ec336f97645ddeb2315a08b737cfd6b (patch) | |
tree | b33ee3bee7c6e4f3353964ccfafa4c1f2578e527 /tests/sqlite | |
parent | a7f7be88de0d636489e46053928bc5b608b8f958 (diff) |
Fix an implicit declaration of atoi in sqlite's benchmark.c.
Diffstat (limited to 'tests/sqlite')
-rw-r--r-- | tests/sqlite/benchmark.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/sqlite/benchmark.c b/tests/sqlite/benchmark.c index de800742..04dc150a 100644 --- a/tests/sqlite/benchmark.c +++ b/tests/sqlite/benchmark.c @@ -1,5 +1,6 @@ #include <time.h> #include <stdio.h> +#include <stdlib.h> #include <sqlite3.h> #include <emscripten.h> |