feat: wrapper function for bootstraping user program
[lunaix-os.git] / lunaix-os / usr / includes / sys / mount.h
1 #ifndef __LUNAIX_SYS_MOUNT_H
2 #define __LUNAIX_SYS_MOUNT_H
3
4 #include <sys/types.h>
5
6 int
7 mount(const char* source, const char* target, const char* fstype, int flags);
8
9 int
10 unmount(const char* target);
11
12 static inline int
13 umount(const char* target)
14 {
15     return unmount(target);
16 }
17 #endif /* __LUNAIX_MOUNT_H */