Browse Source

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.
Sam Lantinga 3 years ago
parent
commit
e6a4230de9
1 changed files with 5 additions and 5 deletions
  1. 5 5
      test/testevdev.c

+ 5 - 5
test/testevdev.c

@@ -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]);