Revert testevdev libc changes

This file uses internal SDL headers as a hack, without actually being built as part of SDL, so we should use normal C functions here.
This commit is contained in:
Sam Lantinga 2021-11-23 03:51:32 -08:00
parent 3eaa80bb0b
commit e6a4230de9

View file

@ -961,11 +961,11 @@ run_test(void)
printf("%s...\n", t->name);
SDL_memset(&caps, '\0', sizeof(caps));
SDL_memcpy(caps.ev, t->ev, sizeof(t->ev));
SDL_memcpy(caps.keys, t->keys, sizeof(t->keys));
SDL_memcpy(caps.abs, t->abs, sizeof(t->abs));
SDL_memcpy(caps.rel, t->rel, sizeof(t->rel));
memset(&caps, '\0', sizeof(caps));
memcpy(caps.ev, t->ev, sizeof(t->ev));
memcpy(caps.keys, t->keys, sizeof(t->keys));
memcpy(caps.abs, t->abs, sizeof(t->abs));
memcpy(caps.rel, t->rel, sizeof(t->rel));
for (j = 0; j < SDL_arraysize(caps.ev); j++) {
caps.ev[j] = SwapLongLE(caps.ev[j]);