summaryrefslogtreecommitdiff
path: root/libio/tst_wprintf.c
blob: 0838441d2c19496fc66cb6773e7875cac8597474 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <wchar.h>

int
main (int argc, char *argv[])
{
  fputws (L"Hello world!\n", stdout);
  wprintf (L"This %s a %ls string: %d\n", "is", L"mixed", 42);
  return 0;
}