| 230 | __INLINE__ int feof(FILE* f) { return _std_feof(f); } |
| 231 | __INLINE__ int feof_unlocked(FILE* f) { return _std_feof(f); } |
| 232 | __INLINE__ int ferror(FILE* f) { return _std_ferror(f); } |
| 233 | __INLINE__ int ferror_unlocked(FILE* f) { return _std_ferror(f); } |
| 234 | __INLINE__ void clearerr(FILE* f) { (void) _std_clearerr(f); } |
| 235 | __INLINE__ void clearerr_unlocked(FILE* f) { (void) _std_clearerr(f); } |
no outgoing calls
no test coverage detected