metal-cos/sys/include/mount.h
2015-11-15 15:17:18 -08:00

14 lines
229 B
C

#ifndef __SYS_MOUNT_H__
#define __SYS_MOUNT_H__
struct statfs {
};
#define MNT_RDONLY 0x0001 /* Read-only */
#define MNT_SYNC 0x0002 /* Synchronous */
#define MNT_ASYNC 0x0004 /* Asynchronous */
#endif /* __SYS_MOUNT_H__ */