1
0
mirror of https://git.tukaani.org/xz.git synced 2025-12-11 16:08:45 +00:00

xz/Windows: Add a missing #include to fix the build with clang-cl

Fixes: https://github.com/tukaani-project/xz/issues/18#issuecomment-1986829734
Fixes: https://github.com/tukaani-project/xz/issues/18#issuecomment-3577456136
This commit is contained in:
Lasse Collin 2025-11-26 13:50:57 +02:00
parent c410ccc625
commit a3c6cb0911
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

View File

@ -12,6 +12,10 @@
#include "private.h"
#include <stdarg.h>
#if defined(_WIN32) && !defined(__CYGWIN__)
# include <io.h>
#endif
/// Buffers for uint64_to_str() and uint64_to_nicestr()
static char bufs[4][128];