diff options
Diffstat (limited to '3rdparty/bx/tests/main_test.cpp')
-rw-r--r-- | 3rdparty/bx/tests/main_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/bx/tests/main_test.cpp b/3rdparty/bx/tests/main_test.cpp index b9e9074a8ea..2e0fbe2b431 100644 --- a/3rdparty/bx/tests/main_test.cpp +++ b/3rdparty/bx/tests/main_test.cpp @@ -1,17 +1,17 @@ /* - * Copyright 2010-2018 Branimir Karadzic. All rights reserved. + * Copyright 2010-2019 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bx#license-bsd-2-clause */ #include "test.h" -static const char* s_argv[] = { "bx.test" }; - int runAllTests(int _argc, const char* _argv[]); #if BX_PLATFORM_ANDROID # include <android/native_activity.h> +static const char* s_argv[] = { "bx.test" }; + void ANativeActivity_onCreate(ANativeActivity*, void*, size_t) { exit(runAllTests(BX_COUNTOF(s_argv), s_argv) ); |