From b921a1676f3cdf610895c2e35756123a1e711ba8 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Wed, 7 Sep 2022 16:11:42 +0200 Subject: [PATCH] lib: add missing limits.h includes Closes https://github.com/curl/curl/pull/9453 --- lib/timediff.c | 2 ++ lib/warnless.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/timediff.c b/lib/timediff.c index 27fd911638..c5893187dd 100644 --- a/lib/timediff.c +++ b/lib/timediff.c @@ -24,6 +24,8 @@ #include "timediff.h" +#include + /* * Converts number of milliseconds into a timeval structure. * diff --git a/lib/warnless.c b/lib/warnless.c index 51187aa52e..b00d7a5a26 100644 --- a/lib/warnless.c +++ b/lib/warnless.c @@ -39,6 +39,8 @@ #include "warnless.h" +#include + #define CURL_MASK_UCHAR ((unsigned char)~0) #define CURL_MASK_SCHAR (CURL_MASK_UCHAR >> 1) -- 2.47.3