diff --git a/Userland/Libraries/LibC/sched.h b/Userland/Libraries/LibC/sched.h index db7ddc2cae..61d6fd77c7 100644 --- a/Userland/Libraries/LibC/sched.h +++ b/Userland/Libraries/LibC/sched.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include @@ -13,10 +14,6 @@ __BEGIN_DECLS int sched_yield(void); -struct sched_param { - int sched_priority; -}; - #define SCHED_FIFO 0 #define SCHED_RR 1 #define SCHED_OTHER 2