projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix behavior of printf with alt-form octal, zero precision, zero value
[oweals/musl.git]
/
src
/
stdio
/
putwc.c
1
#include "stdio_impl.h"
2
#include <wchar.h>
3
4
wint_t putwc(wchar_t c, FILE *f)
5
{
6
return fputwc(c, f);
7
}