1 #ifndef __LUNALIBC_SYS_MOUNT_H
2 #define __LUNALIBC_SYS_MOUNT_H
6 extern int mount(const char* source, const char* target, const char* fstype, int flags);
8 extern int unmount(const char* target);
10 static inline int umount(const char* target)
12 return unmount(target);
14 #endif /* __LUNALIBC_MOUNT_H */