csu: restore crt1.o symlink
[minix.git] / include / minix / mount.h
blobdddb4e6c87a6039727dfe0a540491443a689273c
1 /* <minix/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 */
12 #define MNTNAMELEN 16 /* Length of fs type name including nul */
13 #define MNTFLAGLEN 64 /* Length of flags string including nul */
15 int mount(char *_spec, char *_name, int _mountflags, char *type, char
16 *args);
17 int umount(const char *_name);
18 int umount2(const char *_name, int flags);
20 #endif /* _MOUNT_H */