OrionLibC
Barry Importing existing Orion LibC 03048a9 (3 years, 2 months ago)
#ifndef _SYS_MOUNT_H
#define _SYS_MOUNT_H
#define MS_REMOUNT (1 << 0)
#define MS_BIND (1 << 1)
#define MS_MOVE (1 << 2)
#define MS_RDONLY (1 << 3)
#ifdef __cplusplus
extern "C" {
#endif
int mount(const char *src, const char *target, const char *type,
unsigned long flags, void *data);
#ifdef __cplusplus
}
#endif
#endif