diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-07 13:45:15 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-07 13:45:15 -0500 |
commit | 94c4724ebf1d60a86630f0097b560ffffd4be865 (patch) | |
tree | 4c1571463015762a71a0608525eb1661a3f5c64f /system/lib | |
parent | 534faf153030cbb7efba9751e640ee0de6896c31 (diff) |
make sdl malloc hack nicer, and improve back deps trick
Diffstat (limited to 'system/lib')
-rw-r--r-- | system/lib/sdl.cpp | 13 | ||||
-rw-r--r-- | system/lib/sdl.symbols | 1 |
2 files changed, 0 insertions, 14 deletions
diff --git a/system/lib/sdl.cpp b/system/lib/sdl.cpp deleted file mode 100644 index 7038cdb1..00000000 --- a/system/lib/sdl.cpp +++ /dev/null @@ -1,13 +0,0 @@ - -#include <stdlib.h> - -// force malloc&free to be included in from libc -struct Force { - Force() { - void *x = malloc(10); - free(x); - } -}; - -static Force f; - diff --git a/system/lib/sdl.symbols b/system/lib/sdl.symbols deleted file mode 100644 index c2c0af42..00000000 --- a/system/lib/sdl.symbols +++ /dev/null @@ -1 +0,0 @@ - W SDL_Init |