diff options
author | David Robillard <d@drobilla.net> | 2024-12-10 16:30:26 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-12-11 00:19:45 -0500 |
commit | 54428ad801d32394d2488c54f1887e7fd45c5bc2 (patch) | |
tree | 6ae998efaee5c99304db2c298868f499ccc72863 /src/allocator.c | |
parent | 23cdd12bf40c8128b1c8df9127e5110af89ff460 (diff) | |
download | zix-54428ad801d32394d2488c54f1887e7fd45c5bc2.tar.gz zix-54428ad801d32394d2488c54f1887e7fd45c5bc2.tar.bz2 zix-54428ad801d32394d2488c54f1887e7fd45c5bc2.zip |
Clean up platform C flags
Remove platform flags from executable (test program) builds, since they
shouldn't be needed there (that being the whole point of a portability
library), and replace POSIX flags in WIndows with WIN32_LEAN_AND_MEAN.
Diffstat (limited to 'src/allocator.c')
-rw-r--r-- | src/allocator.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/allocator.c b/src/allocator.c index 686322b..b1453b4 100644 --- a/src/allocator.c +++ b/src/allocator.c @@ -8,7 +8,6 @@ #include <zix/attributes.h> #ifdef _WIN32 -# define WIN32_LEAN_AND_MEAN # include <malloc.h> # include <windows.h> #endif |