mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-29 03:24:36 +00:00
10 lines
177 B
C++
10 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
|