mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 04:12:34 +03:00
6 lines
77 B
C
6 lines
77 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int ferror(FILE *stream) {
|
||
|
return stream->error;
|
||
|
}
|