lib: add missing limits.h includes

Closes https://github.com/curl/curl/pull/9453
This commit is contained in:
Marcel Raad 2022-09-07 16:11:42 +02:00
parent d7dceb57d1
commit b921a1676f
No known key found for this signature in database
GPG Key ID: 33C416EFAE4D6F02
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,8 @@
#include "timediff.h"
#include <limits.h>
/*
* Converts number of milliseconds into a timeval structure.
*

View File

@ -39,6 +39,8 @@
#include "warnless.h"
#include <limits.h>
#define CURL_MASK_UCHAR ((unsigned char)~0)
#define CURL_MASK_SCHAR (CURL_MASK_UCHAR >> 1)