| 3546 | } |
| 3547 | |
| 3548 | static int puts_unlocked(const char *s) |
| 3549 | { |
| 3550 | if (fputs_unlocked(s, stdout) < 0) |
| 3551 | return EOF; |
| 3552 | return fputc_unlocked('\n', stdout); |
| 3553 | } |
| 3554 | |
| 3555 | static size_t fwrite_unlocked(const void *ptr, size_t size, size_t nmemb, |
| 3556 | FILE *stream) |
nothing calls this directly
no test coverage detected