aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/scanf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/scanf8.c')
-rw-r--r--stdio-common/scanf8.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/stdio-common/scanf8.c b/stdio-common/scanf8.c
deleted file mode 100644
index 731ca8be2c..0000000000
--- a/stdio-common/scanf8.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.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);
- if (ret != 1 || strcmp (buf, "Term_bits[]") != 0)
- abort ();
- return 0;
-}