DEADSOFTWARE

system: game itself do not depends on sdl
[flatwaifu.git] / src / my.c
index a966eb8b697aab420f65e938f0d924865ec25497..28dba3d4a81fd4ca902245dd086261a8c7b74512 100644 (file)
--- a/src/my.c
+++ b/src/my.c
@@ -20,7 +20,6 @@
    51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */
 
-#include <SDL.h>
 #include "glob.h"
 #include "error.h"
 #include "misc.h"
@@ -126,10 +125,6 @@ void myfwrite32 (int32_t x, FILE *f) {
   myfwrite(&x, 4, 1, f);
 }
 
-void myrandomize (void) {
-    srand(SDL_GetTicks());
-}
-
 int fexists (char *filename) {
     FILE *f;
     if ((f = fopen(filename, "r")))