BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 03048a95d88cc7a78171393371f5c22a0250a014 / include / sys / mount.h

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 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