diff --git a/src/lib.rs b/src/lib.rs index 320a3ca4..94ee9290 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,6 +16,9 @@ pub mod memory; pub mod serial; pub mod vga_buffer; +#[global_allocator] +static ALLOCATOR: allocator::Dummy = allocator::Dummy; + pub fn init() { gdt::init(); interrupts::init_idt();