source: trunk/sys/dietlibc/ferror.c @ 192

Last change on this file since 192 was 1, checked in by alain, 7 years ago

First import

File size: 174 bytes
Line 
1#include "dietstdio.h"
2
3int ferror_unlocked(FILE*stream) {
4  return (stream->flags&ERRORINDICATOR);
5}
6int ferror(FILE*stream)
7__attribute__((weak,alias("ferror_unlocked")));
Note: See TracBrowser for help on using the repository browser.