Fixed: Compilation under OS X
This commit is contained in:
parent
c4235f7b1e
commit
2052b19d85
1 changed files with 1 additions and 0 deletions
|
@ -368,6 +368,7 @@ 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 <stdlib.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); }
|
||||
|
|
Loading…
Reference in a new issue