diff options
Diffstat (limited to 'kern/task.c')
-rw-r--r-- | kern/task.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kern/task.c b/kern/task.c index e5b34d16..e415cb65 100644 --- a/kern/task.c +++ b/kern/task.c @@ -15,14 +15,15 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <stddef.h> +#include <string.h> + #include <kern/error.h> #include <kern/init.h> #include <kern/kmem.h> #include <kern/list.h> #include <kern/param.h> #include <kern/spinlock.h> -#include <kern/stddef.h> -#include <kern/string.h> #include <kern/task.h> #include <kern/thread.h> #include <vm/vm_kmem.h> |