| 3359 | } |
| 3360 | |
| 3361 | static int ferror(FILE *stream) |
| 3362 | { |
| 3363 | stdio_lock(stream, -1); |
| 3364 | int result = ferror_unlocked(stream); |
| 3365 | stdio_unlock(stream); |
| 3366 | return result; |
| 3367 | } |
| 3368 | |
| 3369 | static int feof_unlocked(FILE *stream) |
| 3370 | { |
no test coverage detected