#pragma once #if defined(_WIN32) #define NOMINMAX #define WIN32_LEAN_AND_MEAN #pragma warning(suppress : 4768) #include #pragma warning(suppress : 4768) #include #else // ^^^^ Windows / Unix vvvv // 2020-05-19: workaround for a c standard library bug // ctermid is not behind an `extern "C"` barrier, so it's linked incorrectly. // This has been reported; remove it after 2023-05-19 #if __APPLE__ extern "C" { #endif #include #if __APPLE__ } #endif #endif #include // glibc defines major and minor in sys/types.h, and should not #undef major #undef minor