diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/scanf11.c | 14 | ||||
-rw-r--r-- | stdio-common/scanf6.c | 16 |
2 files changed, 0 insertions, 30 deletions
diff --git a/stdio-common/scanf11.c b/stdio-common/scanf11.c deleted file mode 100644 index 50ef26aded..0000000000 --- a/stdio-common/scanf11.c +++ /dev/null @@ -1,14 +0,0 @@ -/* This test comes from ISO C Corrigendum 1. */ -#include <stdio.h> - -int -main (int argc, char *argv[]) -{ - int d1, n1, n2, i; -#define NOISE 1234567 - int d2 = NOISE; - - i = sscanf ("123", "%d%n%n%d", &d1, &n1, &n2, &d2); - - return i != 3 || d1 != 123 || n1 != 3 || n2 != 3 || d2 != NOISE; -} diff --git a/stdio-common/scanf6.c b/stdio-common/scanf6.c deleted file mode 100644 index 882e8571e3..0000000000 --- a/stdio-common/scanf6.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> - -int -main (int argc, char *argv[]) -{ - int n = -1; - char c = '!'; - int ret; - - ret = sscanf ("0x", "%i%c", &n, &c); - printf ("ret: %d, n: %d, c: %c\n", ret, n, c); - if (ret != 2 || n != 0 || c != 'x') - abort (); - return 0; -} |