mirror of
https://github.com/0Nera/BMOSP.git
synced 2025-01-23 13:02:13 +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
|