Files
Limine/common/sys/e820.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

14 lines
204 B
C

#ifndef SYS__E820_H__
#define SYS__E820_H__
#include <stdint.h>
#include <stddef.h>
#include <mm/pmm.h>
extern struct memmap_entry e820_map[];
extern size_t e820_entries;
void init_e820(void);
#endif