Changed: Including malloc/malloc.h is useless

This commit is contained in:
kervala 2014-08-27 11:21:47 +02:00
parent 891e0d1bd7
commit 5e8c5d2102

View file

@ -365,7 +365,6 @@ typedef unsigned int uint; // at least 32bits (depend of processor)
inline void *aligned_malloc(size_t size, size_t alignment) { return _aligned_malloc(size, alignment); }
inline void aligned_free(void *ptr) { _aligned_free(ptr); }
#elif defined(NL_OS_MAC)
#include <malloc/malloc.h>
// under Mac OS X, malloc is already aligned for SSE and Altivec (16 bytes alignment)
inline void *aligned_malloc(size_t size, size_t alignment) { return malloc(size); }
inline void aligned_free(void *ptr) { free(ptr); }