diff options
author | tjr <tjr@FreeBSD.org> | 2003-01-13 08:41:47 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-01-13 08:41:47 +0000 |
commit | a8ca4b7688e2ca3f6dd12cb22e4299854c407118 (patch) | |
tree | 896b579ee74016d01328f9a747db0f58e0f2faeb /include | |
parent | 51fa09e0a48d2ad5241e1f358bc5f53001b9da42 (diff) | |
download | FreeBSD-src-a8ca4b7688e2ca3f6dd12cb22e4299854c407118.zip FreeBSD-src-a8ca4b7688e2ca3f6dd12cb22e4299854c407118.tar.gz |
Add prototypes for the non-standard _unlocked functions.
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); |