mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 21:38:01 +03: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
|