diff options
Diffstat (limited to 'stdio-common/scanf1.c')
-rw-r--r-- | stdio-common/scanf1.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/stdio-common/scanf1.c b/stdio-common/scanf1.c deleted file mode 100644 index be6d63e997..0000000000 --- a/stdio-common/scanf1.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> - -int -main (int argc, char *argv[]) -{ - int i,n,r; - - n = i = r = -1; - r = sscanf ("1234:567", "%d%n", &i, &n); - printf ("%d %d %d\n", r, n, i); - if (r != 1 || i != 1234 || n != 4) - abort (); - return 0; -} |