mkfs: symlink support
[minix.git] / common / include / sys / mount.h
blob606fff1e93ba350793e3423882992ee9f280a1e0
1 /* <sys/mount.h>
2 * definitions for mount(2)
3 */
5 #ifndef _MOUNT_H
6 #define _MOUNT_H
8 #define MS_RDONLY 0x001 /* Mount device read only */
9 #define MS_REUSE 0x002 /* Tell RS to try reusing binary from memory */
10 #define MS_LABEL16 0x004 /* Mount message points to 16-byte label */
11 #define MS_EXISTING 0x008 /* Tell mount to use already running server */
13 int mount(char *_spec, char *_name, int _mountflags, char *type, char
14 *args);
15 int umount(const char *_name);
16 int umount2(const char *_name, int flags);
18 #endif /* _MOUNT_H */