Pārlūkot izejas kodu

Removed superfluous inclusion.

Camilla Berglund 13 gadi atpakaļ
vecāks
revīzija
feef05f839
2 mainītis faili ar 4 papildinājumiem un 8 dzēšanām
  1. 2 4
      src/fullscreen.c
  2. 2 4
      src/window.c

+ 2 - 4
src/fullscreen.c

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

+ 2 - 4
src/window.c

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