Fix testcpu build break when targeting latest NDK

This commit is contained in:
Aaron Culliney 2016-05-08 12:33:00 -07:00
parent 9f1f6e4fe1
commit b8ab6e2be0

View File

@ -60,7 +60,7 @@ static void _start_tests(void) {
// Currently this test is the only one that runs as a black screen
extern int test_cpu(int, char *[]);
test_cpu(local_argc, local_argv);
tkill(getpid(), SIGKILL); // and we're done ...
kill(getpid(), SIGKILL); // and we're done ...
#elif TEST_VM
extern void test_vm(int, char *[]);
test_vm(local_argc, local_argv);