When adding MidnightBSD support, I inversed the condition here.

This commit is contained in:
Lucas Holt 2022-07-07 16:23:51 -04:00 committed by Wim Taymans
parent a1fac201e3
commit 4c3f5a7655

View file

@ -6,7 +6,7 @@
#include <sys/mman.h>
#include <fcntl.h>
#include <string.h>
#if defined(__FreeBSD__) || defined(__MidnightBSD__)
#if !defined(__FreeBSD__) && !defined(__MidnightBSD__)
#include <alloca.h>
#endif
#include <errno.h>