repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
support clang internal assembler when building for arm as thumb2 code
[musl.git]
/
src
/
stdio
/
wprintf.c
blob
342cd97911d365e4f787a95280b1ae7a9c631df3
1
#include <stdio.h>
2
#include <stdarg.h>
3
#include <wchar.h>
4
5
int
wprintf
(
const wchar_t
*
restrict fmt
, ...)
6
{
7
int
ret
;
8
va_list
ap
;
9
va_start
(
ap
,
fmt
);
10
ret
=
vwprintf
(
fmt
,
ap
);
11
va_end
(
ap
);
12
return
ret
;
13
}