mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01: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
|