diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-01 11:03:10 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-01 11:03:10 -0800 |
commit | b42a90360ab918019e1824a1fd43966638a6faba (patch) | |
tree | 8cae1c6bff1d0f65b5a7d2976320649b9c0bef12 /tests | |
parent | 6181442a104dd74fb2da8298e28c8a78f2195da5 (diff) |
deprecate EMSCRIPTEN_KEEPALIVE - add your functions to EXPORTED_FUNCTIONS instead
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 177b795c..97ec3b94 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -3119,7 +3119,7 @@ Exiting setjmp function, level: 0, prev_jmp: -1 #include "emscripten.h" extern "C" { - void EMSCRIPTEN_KEEPALIVE save_me_aimee() { printf("mann\n"); } + void save_me_aimee() { printf("mann\n"); } } int main() { |