mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2025-01-08 09:20:45 +01:00
12 lines
154 B
C
12 lines
154 B
C
#ifndef _MEM_H_
|
|
#define _MEM_H_
|
|
|
|
#include "types.h"
|
|
|
|
/* Prototypes */
|
|
s32 Mem_Init(void);
|
|
void *Mem_Alloc(u32 size);
|
|
void Mem_Free(void *ptr);
|
|
|
|
#endif
|