summaryrefslogtreecommitdiff
path: root/stdio-common/bug15.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/bug15.c')
-rw-r--r--stdio-common/bug15.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/stdio-common/bug15.c b/stdio-common/bug15.c
deleted file mode 100644
index 825ca2f980..0000000000
--- a/stdio-common/bug15.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-#include <locale.h>
-
-int
-main (void)
-{
- char buf[10];
- setlocale (LC_ALL, "vi_VN.TCVN-5712");
- return sprintf (buf, "%.*s", 2, "vi") != 2;
-}