From ecaaad95a508e4838cd3f9fdb52ae659c882fa5e Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 29 Jan 2024 17:46:06 +0000 Subject: [PATCH] Remove malloc.h import --- src/common_memory.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/common_memory.cpp b/src/common_memory.cpp index 80a6ac2b4..b63c101d2 100644 --- a/src/common_memory.cpp +++ b/src/common_memory.cpp @@ -1,7 +1,3 @@ -#if defined(GB_SYSTEM_LINUX) -#include -#endif - gb_internal gb_inline void zero_size(void *ptr, isize len) { memset(ptr, 0, len); }