mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
42ef28b4f3
These were added and used by commit5299141320
(CPackDeb: Enable the DEB generator on Windows, 2017-06-17, v3.10.0-rc1~445^2) but have not been used since commitdf556e65f2
(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
|