diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2002-07-03 17:24:17 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2002-07-03 17:24:17 +0000 |
commit | 599ad608ee3297bc1e2bb11656a97335e303877a (patch) | |
tree | c5b59cb5fa2c90f3b0c8b4d9831ae763f2825327 /include/printf.h | |
parent | ab579e469c6787df9bd2252b3de8b1700d5097d8 (diff) |
Enable WCHAR support for C/POSIX stub locales.
Implemented unformatted wide i/o functions. (ungetwc still needs testing)
Fix a few bugs in wchar.c.
Modifications for bcc/elks support.
Diffstat (limited to 'include/printf.h')
-rw-r--r-- | include/printf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/printf.h b/include/printf.h index 8b0a66c88..96e4afa5c 100644 --- a/include/printf.h +++ b/include/printf.h @@ -154,7 +154,7 @@ struct printf_info The function should return the number of characters written, or -1 for errors. */ -typedef int printf_function (FILE *__stream, +typedef int (*printf_function) (FILE *__stream, __const struct printf_info *__info, __const void *__const *__args); |