Nucleus
Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)
diff --git a/include/sys/fs.h b/include/sys/fs.h
new file mode 100644
index 0000000..8cd1376
--- /dev/null
+++ b/include/sys/fs.h
@@ -0,0 +1,18 @@
+#ifndef _SYS_FS_H
+#define _SYS_FS_H
+
+#include <stddef.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int chdir(const char *path);
+int chroot(const char *path);
+char *getcwd(char *buf, size_t size);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif