aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/scanf5.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/scanf5.c')
-rw-r--r--stdio-common/scanf5.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/stdio-common/scanf5.c b/stdio-common/scanf5.c
deleted file mode 100644
index fb4acfabf1..0000000000
--- a/stdio-common/scanf5.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-int
-main(int argc, char *argv[])
-{
- int a, b;
-
- a = b = -1;
- sscanf ("12ab", "%dab%n", &a, &b);
- printf ("%d, %d\n", a, b);
- if (a != 12 || b != 4)
- abort ();
-
- a = b = -1;
- sscanf ("12ab100", "%dab%n100", &a, &b);
- printf ("%d, %d\n", a, b);
- if (a != 12 || b != 4)
- abort ();
- return 0;
-}