2 * definitions for mount(2)
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
17 int umount(const char *_name
);
18 int umount2(const char *_name
, int flags
);