mirror of
https://github.com/0Nera/BMOSP.git
synced 2025-02-18 01:54:09 +03:00
6 lines
173 B
C++
6 lines
173 B
C++
namespace mem {
|
|
void init( );
|
|
void *frame_alloc(uint64_t wanted_frames);
|
|
void frame_free(void *ptr, uint64_t frames);
|
|
void *frame_calloc(uint64_t frames);
|
|
} // namespace mem
|