From b3ee64d294b8610bc3fe7f2f8b00d1a7e4ab1cb0 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Tue, 21 Oct 2025 21:08:27 +0100 Subject: [PATCH] fix windows build --- src/shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shell.c b/src/shell.c index 8a2c747..b3425fc 100644 --- a/src/shell.c +++ b/src/shell.c @@ -23,6 +23,7 @@ #include #endif #if defined(_WIN32) || defined(_WIN64) +#include FILE *fmemopen(void *buf, size_t size, const char *mode) { if (strchr(mode, 'r') == NULL) { return NULL;