mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 13:53:57 -07:00
("RTL" directly has been added to sysdep - requires update of workspace)
This was SVN commit r6156.
12 lines
249 B
C++
12 lines
249 B
C++
#include "precompiled.h"
|
|
#include "lib/sysdep/rtl.h"
|
|
|
|
void* rtl_AllocateAligned(size_t size, size_t alignment)
|
|
{
|
|
return _aligned_malloc(size, alignment);
|
|
}
|
|
|
|
void rtl_FreeAligned(void* alignedPointer)
|
|
{
|
|
_aligned_free(alignedPointer);
|
|
}
|