From d73d768c1210e99134d4537f4dc2f1b16d30ecf2 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Sat, 21 Jun 2025 19:55:10 +0200 Subject: [PATCH] AK: Define tzname for Windows in Time.cpp Unbreaks the Windows build. Co-authored-by: R-Goc --- AK/Time.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/AK/Time.cpp b/AK/Time.cpp index a31952bd005..0525eb9c36f 100644 --- a/AK/Time.cpp +++ b/AK/Time.cpp @@ -15,6 +15,7 @@ # include # define localtime_r(time, tm) localtime_s(tm, time) # define gmtime_r(time, tm) gmtime_s(tm, time) +# define tzname _tzname #endif namespace AK {