diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-04-24 04:10:36 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-04-24 04:10:36 +0100 |
commit | 82aee3171eaa1d9a6eb69242655fd972bdd0b07b (patch) | |
tree | db6c1cdec7b38c3d5a78ec76a59f14f1f95f6f26 /src/os.h | |
parent | af33ebb75a4740d4cf9b6fdbfcbb3014a5226fe3 (diff) |
Move WIN32_LEAN_AND_MEAN and NOMINMAX into flags
They're literally always defined thusfar, and it's always possible to
include specific headers for other stuff. So, rather than litter the
source with defines (which might not even work in the likes of os.h if
some other system header already decided to define/include stuff), let's
just define it at the build script level.
Diffstat (limited to 'src/os.h')
-rw-r--r-- | src/os.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -28,8 +28,6 @@ #include <errno.h> #include <fcntl.h> #ifdef _WIN32 -#define NOMINMAX -#define WIN32_LEAN_AND_MEAN #include <io.h> #include <wchar.h> // DUMB HACK: noreturn.h is alphabetically before os.h so including it after |