123456789101112131415161718192021 |
- #ifndef __GBLIBC_SYS_MOUNT_H
- #define __GBLIBC_SYS_MOUNT_H
- #define MS_RDONLY (1 << 0)
- #define MS_NOSUID (1 << 1)
- #define MS_NODEV (1 << 2)
- #define MS_NOEXEC (1 << 3)
- #define MS_NOATIME (1 << 10)
- #define MS_RELATIME (1 << 21)
- #define MS_STRICTATIME (1 << 24)
- #define MS_LAZYTIME (1 << 25)
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|