mount.h 400 B

123456789101112131415161718192021
  1. #ifndef __GBLIBC_SYS_MOUNT_H
  2. #define __GBLIBC_SYS_MOUNT_H
  3. #define MS_RDONLY (1 << 0)
  4. #define MS_NOSUID (1 << 1)
  5. #define MS_NODEV (1 << 2)
  6. #define MS_NOEXEC (1 << 3)
  7. #define MS_NOATIME (1 << 10)
  8. #define MS_RELATIME (1 << 21)
  9. #define MS_STRICTATIME (1 << 24)
  10. #define MS_LAZYTIME (1 << 25)
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif