From 4a400f8ca52d512abaf279da7798619fc4c96e3c Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 29 Jun 2026 20:11:56 -0400 Subject: [PATCH] builtin.h: skip alloca.h include on OpenBSD alloca() is provided by stdlib.h on OpenBSD, so the separate alloca.h include is not needed and causes a faild build. --- internal/compiler/builtin/builtin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/compiler/builtin/builtin.h b/internal/compiler/builtin/builtin.h index 1b3e285..bb5cf31 100644 --- a/internal/compiler/builtin/builtin.h +++ b/internal/compiler/builtin/builtin.h @@ -4,7 +4,7 @@ #ifdef _WIN32 #include -#else +#elif !defined(__OpenBSD__) #include #endif