1 #ifndef __LUNAIX_SYS_MOUNT_H
2 #define __LUNAIX_SYS_MOUNT_H
4 #include <usr/sys/types.h>
7 mount(const char* source, const char* target, const char* fstype, int flags);
10 unmount(const char* target);
13 umount(const char* target)
15 return unmount(target);
17 #endif /* __LUNAIX_MOUNT_H */