mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
9 lines
177 B
C++
9 lines
177 B
C++
#include "GNU.h"
|
|
|
|
#ifdef __APPLE__
|
|
void * _aligned_malloc(size_t size, size_t alignment) {
|
|
void *buffer;
|
|
posix_memalign(&buffer, alignment, size);
|
|
return buffer;
|
|
}
|
|
#endif
|