cm_sys_stat.h 347 B

1234567891011121314
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cm_sys_stat_h
  4. #define cm_sys_stat_h
  5. #if defined(_MSC_VER)
  6. typedef unsigned short mode_t;
  7. #endif
  8. #include <sys/types.h>
  9. // include sys/stat.h after sys/types.h
  10. #include <sys/stat.h>
  11. #endif