diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h index 3da10be..72f07ea 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -302,6 +302,12 @@ int getchar_unlocked(void); int putc_unlocked(int, FILE *); int putchar_unlocked(int); #endif +#if __BSD_VISIBLE +void clearerr_unlocked(FILE *); +int feof_unlocked(FILE *); +int ferror_unlocked(FILE *); +int fileno_unlocked(FILE *); +#endif #if __POSIX_VISIBLE >= 200112 int fseeko(FILE *, __off_t, int); |