Update
[glibc.git] / libio / tst_wprintf.c
blob0838441d2c19496fc66cb6773e7875cac8597474
1 #include <stdio.h>
2 #include <wchar.h>
4 int
5 main (int argc, char *argv[])
7 fputws (L"Hello world!\n", stdout);
8 wprintf (L"This %s a %ls string: %d\n", "is", L"mixed", 42);
9 return 0;