diff options
author | tjr <tjr@FreeBSD.org> | 2002-09-21 13:00:30 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-09-21 13:00:30 +0000 |
commit | 111c3b394a02704c6e1d1c394bf3a2d5acaaadd3 (patch) | |
tree | 81419641bed2078ca1975a619324e3a8c863309f /lib/libc/stdio/local.h | |
parent | c54d14202faa72d91b01361224464de366ce2d22 (diff) | |
download | FreeBSD-src-111c3b394a02704c6e1d1c394bf3a2d5acaaadd3.zip FreeBSD-src-111c3b394a02704c6e1d1c394bf3a2d5acaaadd3.tar.gz |
Add implementations of the wprintf() family of functions, which perform
formatted wide-character output.
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 6c860cd..309cc9c 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -72,6 +72,7 @@ extern int __swsetup(FILE *); extern int __sflags(const char *, int *); extern int __ungetc(int, FILE *); extern int __vfprintf(FILE *, const char *, __va_list); +extern int __vfwprintf(FILE *, const wchar_t *, __va_list); extern int __sdidinit; |