| 4202 | } |
| 4203 | |
| 4204 | static int fprintf(FILE *stream, const char *format, ...) |
| 4205 | { |
| 4206 | va_list ap; |
| 4207 | va_start(ap, format); |
| 4208 | int result = vfprintf(stream, format, ap); |
| 4209 | va_end(ap); |
| 4210 | return result; |
| 4211 | } |
| 4212 | |
| 4213 | static int fprintf_unlocked(FILE *stream, const char *format, ...) |
| 4214 | { |