summaryrefslogtreecommitdiffstats
path: root/include/sys/mount.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sys/mount.h')
-rw-r--r--include/sys/mount.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sys/mount.h b/include/sys/mount.h
new file mode 100644
index 0000000000..978f3406e8
--- /dev/null
+++ b/include/sys/mount.h
@@ -0,0 +1,8 @@
+#ifndef __SYS_MOUNT_H
+#define __SYS_MOUNT_H
+
+int mount(const char *device, const char *fsname, const char *path,
+ const char *fsoptions);
+int umount(const char *pathname);
+
+#endif /* __SYS_MOUNT_H */