BarryServer : Git

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

// Related

Nucleus

Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)
diff --git a/vfs/stat.c b/vfs/stat.c
index 037a77f..2d3ef06 100644
--- a/vfs/stat.c
+++ b/vfs/stat.c
@@ -2,9 +2,9 @@
  * This file implements the stat system call and similar system calls.
  */
 
-#include <string.h>
+#include <sys/errno.h>
 #include <sys/stat.h>
-#include <errno.h>
+#include <nucleus/lib.h>
 #include <nucleus/memory.h>
 #include <nucleus/vfs.h>