mirror of
https://github.com/libretro/RetroArch
synced 2025-01-06 10:11:54 +00:00
6 lines
125 B
C
6 lines
125 B
C
|
#include <stdio.h>
|
||
|
#ifdef _WIN32
|
||
|
#define fopen fopen_utf8
|
||
|
FILE* fopen_utf8(const char * filename, const char * mode);
|
||
|
#endif
|