mpy-cross,unix: Include alloca.h for NetBSD.

This commit is contained in:
Chris Waggoner 2022-08-21 06:57:12 -04:00 committed by Damien George
parent d8ad87843a
commit b1efc1340a
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ typedef long mp_off_t;
#define MP_PLAT_PRINT_STRN(str, len) (void)0
// We need to provide a declaration/definition of alloca()
#ifdef __FreeBSD__
#if defined(__FreeBSD__) || defined(__NetBSD__)
#include <stdlib.h>
#elif defined(_WIN32)
#include <malloc.h>

View File

@ -294,7 +294,7 @@ static inline unsigned long mp_urandom_seed_init(void) {
// We need to provide a declaration/definition of alloca()
// unless support for it is disabled.
#if !defined(MICROPY_NO_ALLOCA) || MICROPY_NO_ALLOCA == 0
#ifdef __FreeBSD__
#if defined(__FreeBSD__) || defined(__NetBSD__)
#include <stdlib.h>
#else
#include <alloca.h>