2
0
mirror of https://github.com/wolfpld/tracy synced 2026-01-19 04:52:09 +00:00

Fix usage of stat64 on non-glibc Linux

This commit is contained in:
whouishere
2025-09-05 10:22:02 -03:00
parent 981717f3ef
commit a755cfab78

View File

@@ -18,7 +18,7 @@
#ifdef _MSC_VER
# define stat64 _stat64
#endif
#if defined __APPLE__ || defined __FreeBSD__
#if defined __APPLE__ || defined __FreeBSD__ || (defined __linux__ && !defined __GLIBC__)
# define stat64 stat
#endif