diff --git a/headers/private/kernel/arch/x86/arch_cpu.h b/headers/private/kernel/arch/x86/arch_cpu.h index 652a95a796..572d00a61a 100644 --- a/headers/private/kernel/arch/x86/arch_cpu.h +++ b/headers/private/kernel/arch/x86/arch_cpu.h @@ -6,7 +6,6 @@ #define _KERNEL_ARCH_x86_CPU_H #include -#include #include #define PAGE_SIZE 4096 @@ -86,6 +85,8 @@ struct iframe { #define nop() __asm__ ("nop"::) +struct arch_thread; + void setup_system_time(unsigned int cv_factor); void i386_context_switch(struct arch_thread *old_state, struct arch_thread *new_state, addr new_pgdir); void i386_enter_uspace(addr entry, void *args1, void *args2, addr ustack_top);