mirror of
https://github.com/0Nera/BMOSP.git
synced 2024-11-25 18:09:38 +03:00
5 lines
100 B
C++
5 lines
100 B
C++
namespace mem {
|
|
void init( );
|
|
void *alloc_block( );
|
|
void free_block(void *block);
|
|
} // namespace mem
|