Architectural Support: x86_64 (#37)
[lunaix-os.git] / lunaix-os / usr / libc / src / posix / mount.c
1 #include <lunaix/syscall.h>
2
3 int
4 mount(const char* source, const char* target,
5       const char* fstype, int options)
6 {
7     return do_lunaix_syscall(__SYSCALL_mount, source, target, fstype, options);
8 }
9
10 int
11 unmount(const char* target)
12 {
13     return do_lunaix_syscall(__SYSCALL_unmount, target);
14 }