| 4211 | } |
| 4212 | |
| 4213 | static int fprintf_unlocked(FILE *stream, const char *format, ...) |
| 4214 | { |
| 4215 | va_list ap; |
| 4216 | va_start(ap, format); |
| 4217 | int result = vfprintf_unlocked(stream, format, ap); |
| 4218 | va_end(ap); |
| 4219 | return result; |
| 4220 | } |
| 4221 | |
| 4222 | static int printf(const char *format, ...) |
| 4223 | { |
no test coverage detected