Upload Tizen:Base source
[external/eglibc.git] / stdio-common / bug15.c
1 #include <stdio.h>
2 #include <locale.h>
3
4 int
5 main (void)
6 {
7   char buf[10];
8   setlocale (LC_ALL, "vi_VN.TCVN-5712");
9   return sprintf (buf, "%.*s", 2, "vi") != 2;
10 }