attempted libretro build fix

This commit is contained in:
Eric Warmenhoven 2025-07-22 16:10:15 -04:00
parent 1315753fb3
commit 0141745abd
No known key found for this signature in database

View file

@ -45,6 +45,8 @@
#define fileno _fileno
typedef struct _stat64 file_stat_t;
#define fstat _fstat64
#elif defined(HAVE_LIBRETRO)
typedef struct _stat64 file_stat_t;
#else
typedef struct stat file_stat_t;
#endif