mirror of
https://github.com/reactos/CMake.git
synced 2025-05-14 02:25:53 +00:00

These were added and used by commit 5299141320 (CPackDeb: Enable the DEB generator on Windows, 2017-06-17, v3.10.0-rc1~445^2) but have not been used since commit df556e65f2 (cmCPackDebGenerator: Use libarchive to create .deb file, 2017-08-24, v3.10.0-rc1~220^2).
15 lines
370 B
C
15 lines
370 B
C
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cm_sys_stat_h
|
|
#define cm_sys_stat_h
|
|
|
|
#if defined(_MSC_VER)
|
|
using mode_t = unsigned short;
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
// include sys/stat.h after sys/types.h
|
|
#include <sys/stat.h> // IWYU pragma: export
|
|
|
|
#endif
|