mirror of
https://github.com/libretro/RetroArch
synced 2025-01-04 02:50:05 +00:00
13 lines
230 B
C
13 lines
230 B
C
#ifndef __MEMR_H__
|
|
#define __MEMR_H__
|
|
|
|
#include <gctypes.h>
|
|
|
|
void memr_init();
|
|
void* memr_malloc(u32 size);
|
|
void memr_free(void *ptr);
|
|
void* memr_realloc(void *ptr,u32 newsize);
|
|
void* memr_reallocm(void *ptr,u32 newsize);
|
|
|
|
#endif
|