aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/scanf9.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/scanf9.c')
-rw-r--r--stdio-common/scanf9.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/stdio-common/scanf9.c b/stdio-common/scanf9.c
deleted file mode 100644
index 7aca354d2a..0000000000
--- a/stdio-common/scanf9.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-int
-main (void)
-{
- int matches;
- char str[10];
-
- str[0] = '\0';
- matches = -9;
- matches = sscanf ("x ]", "%[^] ]", str);
- printf ("Matches = %d, string str = \"%s\".\n", matches, str);
- printf ("str should be \"x\".\n");
-
- if (strcmp (str, "x"))
- abort ();
-
- str[0] = '\0';
- matches = -9;
- matches = sscanf (" ] x", "%[] ]", str);
- printf ("Matches = %d, string str = \"%s\".\n", matches, str);
- printf ("str should be \" ] \".\n");
-
- if (strcmp (str, " ] "))
- abort ();
-
- return 0;
-}