| 180 | __INLINE__ int putc(int c, FILE* f) { return _std_putc(c,f); } |
| 181 | __INLINE__ int putc_unlocked(int c, FILE* f) { return _std_putc(c,f); } |
| 182 | __INLINE__ int putchar(int c) { return _std_putchar(c); } |
| 183 | __INLINE__ int putchar_unlocked(int c) { return _std_putchar(c); } |
| 184 | __INLINE__ int fputs(const char* s, FILE* f) { return _std_fputs(s,f); } |
| 185 | __INLINE__ int fputs_unlocked(const char* s, FILE* f) { return _std_fputs(s,f); } |
no outgoing calls
no test coverage detected