| 178 | __INLINE__ void funlockfile(FILE* f) { (void) _std_funlockfile(f); } |
| 179 | |
| 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); } |
no outgoing calls
no test coverage detected