chore: fix almost *ALL* warnings.
[lunaix-os.git] / lunaix-os / usr / api / mount.c
1 #include <lunaix/syscall.h>
2 #include <sys/mount.h>
3
4 __LXSYSCALL4(int,
5              mount,
6              const char*,
7              source,
8              const char*,
9              target,
10              const char*,
11              fstype,
12              int,
13              options)
14
15 __LXSYSCALL1(int, unmount, const char*, target)