aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/bug11.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/bug11.c')
-rw-r--r--stdio-common/bug11.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/stdio-common/bug11.c b/stdio-common/bug11.c
deleted file mode 100644
index c5af604e44..0000000000
--- a/stdio-common/bug11.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-
-int
-main (int argc, char *argv[])
-{
- int ret;
- char buf [1024] = "Ooops";
-
- ret = sscanf ("static char Term_bits[] = {", "static char %s = {", buf);
- printf ("ret: %d, name: %s\n", ret, buf);
-
- return strcmp (buf, "Term_bits[]") != 0 || ret != 1;
-}