source:
trunk/sys/dietlibc/ferror.c
@
233
Last change on this file since 233 was 1, checked in by , 8 years ago | |
---|---|
File size: 174 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | #include "dietstdio.h" |
2 | ||
3 | int ferror_unlocked(FILE*stream) { | |
4 | return (stream->flags&ERRORINDICATOR); | |
5 | } | |
6 | int ferror(FILE*stream) | |
7 | __attribute__((weak,alias("ferror_unlocked"))); |
Note: See TracBrowser
for help on using the repository browser.