Add __fseterr and __freadahead to stdio ext (P3-stdio-fseterr patch)

This commit is contained in:
Red Bear OS
2026-06-27 09:22:51 +03:00
parent 1b3e94a20d
commit 047e7c09da
2 changed files with 31 additions and 1 deletions
+16
View File
@@ -3,4 +3,20 @@
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
size_t __freadahead(FILE *stream);
size_t __fpending(FILE *stream);
int __freadable(FILE *stream);
int __freading(FILE *stream);
void __fseterr(FILE *stream);
int __fwritable(FILE *stream);
int __fwriting(FILE *stream);
#ifdef __cplusplus
} // extern "C"
#endif
#endif /* _STDIO_EXT_H */