diff options
author | tjr <tjr@FreeBSD.org> | 2002-09-22 05:59:00 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-09-22 05:59:00 +0000 |
commit | 66942d16196a10965c08f1bdfdea67bba8134550 (patch) | |
tree | 76b047271cf56936a6775126e3139bfdd2df1cab /lib/libc/stdio/local.h | |
parent | e54737666a584849daea897dbaf548d7ea1b8233 (diff) | |
download | FreeBSD-src-66942d16196a10965c08f1bdfdea67bba8134550.zip FreeBSD-src-66942d16196a10965c08f1bdfdea67bba8134550.tar.gz |
Add an unlocked version of ungetwc(), __ungetwc(), that __vfwscanf()
will need to use.
Diffstat (limited to 'lib/libc/stdio/local.h')
-rw-r--r-- | lib/libc/stdio/local.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 309cc9c..290040b 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -71,6 +71,7 @@ extern int _fwalk(int (*)(FILE *)); extern int __swsetup(FILE *); extern int __sflags(const char *, int *); extern int __ungetc(int, FILE *); +extern wint_t __ungetwc(wchar_t, FILE *); extern int __vfprintf(FILE *, const char *, __va_list); extern int __vfwprintf(FILE *, const wchar_t *, __va_list); |