Add NetBSD support. (#90)

This commit is contained in:
Thomas Klausner
2023-03-13 17:40:54 +01:00
committed by GitHub
parent 671d5cac15
commit 41be0a3b3d
3 changed files with 6 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <malloc.h> // using malloc.h with MSC/MINGW
#elif !defined(__FreeBSD__)
#elif !defined(__FreeBSD__) && !defined(__NetBSD__)
#include <alloca.h>
#endif