BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 18495cfe1cf5f7fc6f6b0c8c12d7f34dfded1be0 / task / task.c

// Related

Nucleus

Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)
diff --git a/task/task.c b/task/task.c
index b0268e2..3d84436 100644
--- a/task/task.c
+++ b/task/task.c
@@ -3,13 +3,13 @@
  * implements the Task object.
  */
 
-#include <stdint.h>
 #include <stddef.h>
-#include <string.h>
+#include <stdint.h>
 #include <nucleus/cpu.h>
-#include <nucleus/task.h>
+#include <nucleus/lib.h>
 #include <nucleus/memory.h>
 #include <nucleus/object.h>
+#include <nucleus/task.h>
 #include <nucleus/vfs.h>
 
 void timer_handler(struct InterruptFrame *frame);