| 214 | __INLINE__ int fflush_unlocked(FILE* f) { return _std_fflush(f); } |
| 215 | |
| 216 | __INLINE__ void rewind(FILE* f) { (void) _std_rewind(f); } |
| 217 | __INLINE__ int fseek(FILE* f, long o, int t) { return _std_fseek(f,o,t); } |
| 218 | __INLINE__ long ftell(FILE* f) { return _std_ftell(f); } |
| 219 | __INLINE__ int fsetpos(FILE* f, fpos_t* pos) { return _std_fsetpos(f,pos); } |
no outgoing calls
no test coverage detected