From 268ba6f99af748aca0660078e525bd375d36ab97 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 3 Jan 2026 10:47:49 +0100 Subject: [PATCH 099/N] pycore_time: fix missing timeval https://github.com/python/cpython/issues/82863 --- Include/internal/pycore_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/internal/pycore_time.h b/Include/internal/pycore_time.h index 205ac5d..95a52d8 100644 --- a/Include/internal/pycore_time.h +++ b/Include/internal/pycore_time.h @@ -58,7 +58,7 @@ extern "C" { #endif -#ifdef __clang__ +#ifdef MS_WINDOWS struct timeval; #endif