Add prototypes for the non-standard _unlocked functions.

This commit is contained in:
Tim J. Robbins 2003-01-13 08:41:47 +00:00
parent 528e3c946d
commit e8065dc491
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109168

View File

@ -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);