From: Marcel Raad Date: Tue, 25 Jun 2024 13:07:12 +0000 (+0200) Subject: system_win32: add missing curl.h include X-Git-Tag: curl-8_9_0~187 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4a512bd3f211c33f232c70bf0df049a170f0aa75;p=thirdparty%2Fcurl.git system_win32: add missing curl.h include It's required for `CURLcode`. Closes https://github.com/curl/curl/pull/14019 --- diff --git a/lib/system_win32.h b/lib/system_win32.h index bd2f775a7c..534a5e4988 100644 --- a/lib/system_win32.h +++ b/lib/system_win32.h @@ -28,6 +28,8 @@ #ifdef _WIN32 +#include + extern LARGE_INTEGER Curl_freq; extern bool Curl_isVistaOrGreater; extern bool Curl_isWindows8OrGreater;