2
0
Эх сурвалжийг харах

Removed superfluous inclusion.

Camilla Berglund 13 жил өмнө
parent
commit
feef05f839

+ 2 - 4
src/fullscreen.c

@@ -32,10 +32,8 @@
 #include "internal.h"
 #include "internal.h"
 
 
 #include <stdlib.h>
 #include <stdlib.h>
-#ifdef __APPLE__
-#include <sys/malloc.h>
-#else
-#include <malloc.h>
+#if _WIN32
+ #include <malloc.h>
 #endif
 #endif
 
 
 
 

+ 2 - 4
src/window.c

@@ -33,10 +33,8 @@
 
 
 #include <string.h>
 #include <string.h>
 #include <stdlib.h>
 #include <stdlib.h>
-#ifdef __APPLE__
-#include <sys/malloc.h>
-#else
-#include <malloc.h>
+#if _WIN32
+ #include <malloc.h>
 #endif
 #endif