From 6ca804f58feb139bd777853a9e8000ccbdebb290 Mon Sep 17 00:00:00 2001 From: cristina-suteu Date: Fri, 29 Mar 2024 13:25:49 +0200 Subject: [PATCH] dialogs.c: include strings.h if building for macOS Signed-off-by: cristina-suteu --- dialogs.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dialogs.c b/dialogs.c index 40fc3dd7..6806edac 100644 --- a/dialogs.c +++ b/dialogs.c @@ -17,6 +17,10 @@ #include #include +#ifdef __APPLE__ +#include +#endif + #include #include "compat.h"