mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
15 lines
208 B
C
15 lines
208 B
C
#include <kernaux/memmap.h>
|
|
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
|
|
#define SIZE_1GiB (1024 * 1024 * 1024)
|
|
|
|
KernAux_MemMap memmap;
|
|
|
|
int main()
|
|
{
|
|
KernAux_MemMap_init(memmap, SIZE_1GiB);
|
|
|
|
return 0;
|
|
}
|