10 lines
165 B
C
10 lines
165 B
C
#ifndef ARCH_E820_H_
|
|
#define ARCH_E820_H_
|
|
|
|
#include <stddef.h>
|
|
#include <arch/multiboot.h>
|
|
|
|
extern void e820_scan(multiboot_memory_map_t *mmap, size_t len);
|
|
|
|
#endif
|