From 1f58eaf222f28ce4fa40189803192924ce11e747 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Mon, 11 Jan 2021 14:35:32 +0100 Subject: [PATCH] Add missing imports, fixing 0.2.2. --- src/arch/x86_64.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/arch/x86_64.rs b/src/arch/x86_64.rs index 1323dbd..3f96e2a 100644 --- a/src/arch/x86_64.rs +++ b/src/arch/x86_64.rs @@ -1,3 +1,6 @@ +use core::{mem, slice}; +use core::ops::{Deref, DerefMut}; + use super::error::{Error, Result}; macro_rules! syscall {