From 5084ee1b6f3ee81bd32cf81f885252debbc21b61 Mon Sep 17 00:00:00 2001 From: Futaura Date: Wed, 19 Jul 2023 19:54:40 +0100 Subject: [PATCH] amissl: add missing signal.h include In some environments, signal.h is already included, but not in others which cause compilation to fail, so explictly include it. Closes #11478 --- lib/amigaos.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/amigaos.c b/lib/amigaos.c index b0a9500267..139309b116 100644 --- a/lib/amigaos.c +++ b/lib/amigaos.c @@ -178,6 +178,7 @@ struct Curl_addrinfo *Curl_ipv4_resolve_r(const char *hostname, #endif /* CURLRES_AMIGA */ #ifdef USE_AMISSL +#include int Curl_amiga_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout) { -- 2.47.3