From 389773070f45c1bc146b7c80a09409d7bca9dd36 Mon Sep 17 00:00:00 2001 From: JustCommitRandomness <51818859+JustCommitRandomness@users.noreply.github.com> Date: Thu, 5 Mar 2026 04:32:31 +0000 Subject: [PATCH] OpenBSD also needs alloca.h (#2012) --- otherarch/ggml_v1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otherarch/ggml_v1.c b/otherarch/ggml_v1.c index 7257e4a1f..f4e2d82ae 100644 --- a/otherarch/ggml_v1.c +++ b/otherarch/ggml_v1.c @@ -2,7 +2,7 @@ #if defined(_MSC_VER) || defined(__MINGW32__) #include // using malloc.h with MSC/MINGW -#elif !defined(__FreeBSD__) +#elif !defined(__FreeBSD__) && !defined(__OpenBSD__) #include #endif