mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 03:39:56 +00:00
15 lines
281 B
C++
15 lines
281 B
C++
#ifndef __LWP_WKSPACE_INL__
|
|
#define __LWP_WKSPACE_INL__
|
|
|
|
static __inline__ void* __lwp_wkspace_allocate(u32 size)
|
|
{
|
|
return __lwp_heap_allocate(&__wkspace_heap,size);
|
|
}
|
|
|
|
static __inline__ BOOL __lwp_wkspace_free(void *ptr)
|
|
{
|
|
return __lwp_heap_free(&__wkspace_heap,ptr);
|
|
}
|
|
|
|
#endif
|