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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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