1 2 #ifndef __SYS_MOUNT_H__ 3 #define __SYS_MOUNT_H__ 4 5 struct statfs { 6 }; 7 8 #define MNT_RDONLY 0x0001 /* Read-only */ 9 #define MNT_SYNC 0x0002 /* Synchronous */ 10 #define MNT_ASYNC 0x0004 /* Asynchronous */ 11 12 #endif /* __SYS_MOUNT_H__ */ 13 14