From 4a512bd3f211c33f232c70bf0df049a170f0aa75 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Tue, 25 Jun 2024 15:07:12 +0200 Subject: [PATCH] system_win32: add missing curl.h include It's required for `CURLcode`. Closes https://github.com/curl/curl/pull/14019 --- lib/system_win32.h | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.47.3