| 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); } |
| 186 | __INLINE__ int puts(const char* s) { return _std_puts(s); } |
| 187 | __INLINE__ int puts_unlocked(const char* s) { return _std_puts(s); } |
no outgoing calls
no test coverage detected