mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-16 08:11:31 +00:00
11 lines
235 B
C
11 lines
235 B
C
|
#ifndef BASEMEM_H
|
||
|
#define BASEMEM_H
|
||
|
|
||
|
#include "stdint.h"
|
||
|
|
||
|
extern uint32_t get_free_base_memory ( void );
|
||
|
extern void * alloc_base_memory ( size_t size );
|
||
|
extern void free_base_memory ( void *ptr, size_t size );
|
||
|
|
||
|
#endif /* BASEMEM_H */
|