Browse Source

Remove malloc.h import

gingerBill 1 year ago
parent
commit
ecaaad95a5
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/common_memory.cpp

+ 0 - 4
src/common_memory.cpp

@@ -1,7 +1,3 @@
-#if defined(GB_SYSTEM_LINUX)
-#include <malloc.h>
-#endif
-
 gb_internal gb_inline void zero_size(void *ptr, isize len) {
 	memset(ptr, 0, len);
 }