mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Buildfix
This commit is contained in:
parent
47b4de7bbf
commit
42ac90665e
1 changed files with 5 additions and 0 deletions
|
@ -554,7 +554,12 @@ int filestream_printf(RFILE *stream, const char* format, ...)
|
|||
|
||||
int filestream_error(RFILE *stream)
|
||||
{
|
||||
#if defined(HAVE_BUFFERED_IO)
|
||||
return ferror(stream->fp);
|
||||
#else
|
||||
/* stub */
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
int filestream_close(RFILE *stream)
|
||||
|
|
Loading…
Add table
Reference in a new issue