refactor: restructure the user space stuff.
[lunaix-os.git] / lunaix-os / usr / includes / sys / mount.h
diff --git a/lunaix-os/usr/includes/sys/mount.h b/lunaix-os/usr/includes/sys/mount.h
deleted file mode 100644 (file)
index 5d12df8..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef __LUNAIX_SYS_MOUNT_H
-#define __LUNAIX_SYS_MOUNT_H
-
-#include <sys/types.h>
-
-int
-mount(const char* source, const char* target, const char* fstype, int flags);
-
-int
-unmount(const char* target);
-
-static inline int
-umount(const char* target)
-{
-    return unmount(target);
-}
-#endif /* __LUNAIX_MOUNT_H */