AK: Define tzname for Windows in Time.cpp

Unbreaks the Windows build.

Co-authored-by: R-Goc <ryszardgoc@gmail.com>
This commit is contained in:
Jelle Raaijmakers 2025-06-21 19:55:10 +02:00 committed by Jelle Raaijmakers
commit d73d768c12
Notes: github-actions[bot] 2025-06-22 07:18:43 +00:00

View file

@ -15,6 +15,7 @@
# include <AK/Windows.h>
# define localtime_r(time, tm) localtime_s(tm, time)
# define gmtime_r(time, tm) gmtime_s(tm, time)
# define tzname _tzname
#endif
namespace AK {