mirror of
https://github.com/libretro/libretro-common.git
synced 2025-04-02 10:31:51 -04:00
BUildfix
This commit is contained in:
parent
b3dbc593ee
commit
1d7364379e
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