examples: use 64-bit fstat on Windows

Closes #19896
This commit is contained in:
Viktor Szakats 2025-12-09 12:55:26 +01:00
parent b739102ea6
commit e28dc58b65
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
5 changed files with 10 additions and 10 deletions

View file

@ -39,9 +39,9 @@
#ifdef _WIN32
#undef stat
#define stat _stat
#define stat _stati64
#undef fstat
#define fstat _fstat
#define fstat _fstati64
#define fileno _fileno
#endif