Add unimplemented message

This commit is contained in:
twinaphex 2016-04-07 03:30:02 +02:00
parent 502c2a41a9
commit b20a03f3b9

View File

@ -416,6 +416,7 @@ int filestream_putc(RFILE *stream, int c)
#if defined(HAVE_BUFFERED_IO)
return fputc(c, stream->fp);
#else
/* unimplemented */
return EOF;
#endif
}