BarryServer : Git

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

// Related

Nucleus

Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)
diff --git a/kernel/main.c b/kernel/main.c
index b7d8eb8..90c102d 100644
--- a/kernel/main.c
+++ b/kernel/main.c
@@ -5,17 +5,18 @@
  */
 
 #include <stdint.h>
-#include <string.h>
-#include <unistd.h>
+#include <sys/exec.h>
+#include <sys/fs.h>
 #include <sys/mount.h>
 #include <sys/stat.h>
 #include <nucleus/kernel.h>
+#include <nucleus/lib.h>
 #include <nucleus/memory.h>
 #include <nucleus/task.h>
 #include <nucleus/vfs.h>
-#include "multiboot.h"
-#include "desc.h"
 #include "acpi/acpi.h"
+#include "desc.h"
+#include "multiboot.h"
 
 extern char _bss[], _end[];
 void page_fault_handler(struct InterruptFrame *frame);