prime/src/musyx/hw_memory.c
Luke Street 234afca6c2 clang-format pass
Former-commit-id: 6a979e343f6a88e4c9b78d3917c1fabfcb211a0a
2022-09-18 02:05:46 -04:00

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); }