| 4229 | } |
| 4230 | |
| 4231 | static int printf_unlocked(const char *format, ...) |
| 4232 | { |
| 4233 | va_list ap; |
| 4234 | va_start(ap, format); |
| 4235 | int result = vfprintf_unlocked(stdout, format, ap); |
| 4236 | va_end(ap); |
| 4237 | return result; |
| 4238 | } |
| 4239 | |
| 4240 | static void perror(const char *msg) |
| 4241 | { |
nothing calls this directly
no test coverage detected