mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-04 00:35:53 +00:00
6 lines
140 B
C
6 lines
140 B
C
#include "musyx/musyx_priv.h"
|
|
|
|
void* salMalloc(u32 len) { return salHooks.malloc(len); }
|
|
|
|
void salFree(void* addr) { salHooks.free(addr); }
|