summaryrefslogtreecommitdiff
path: root/stdio-common/scanf6.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-09-06 22:16:55 +0000
committerUlrich Drepper <drepper@redhat.com>1999-09-06 22:16:55 +0000
commit39d31947cfc072d319ed5c5e69a0dfcd9c98e7d5 (patch)
treeaeac85e24cf537be551f04272559a0943ef45ea4 /stdio-common/scanf6.c
parent7fcc87f4673c79e7dbcc7d972e646383b5e47ce3 (diff)
Update.
1999-09-06 Ulrich Drepper <drepper@cygnus.com> * time/ap.c: Removed. It was not used. * time/date.c: Likewise. * sysdeps/unix/nlist.c: Likewise. * sysdeps/generic/nlist.c: Likewise. * sysdeps/generic/varargs.h: Likewise. * stdio-common/scanf11.c: Likewise. * stdio-common/scanf6.c: Likewise. * scripts/=__ify: Likewise. * scripts/printsources: Likewise. * resolv/getnetnamadr.c: Likewise. * posix/id.c: Likewise. * misc/ioctltst.c: Likewise. * misc/nlist.h: Likewise. * math/test-math.h: Likewise. * include/nlist.h: Likewise.
Diffstat (limited to 'stdio-common/scanf6.c')
-rw-r--r--stdio-common/scanf6.c16
1 files changed, 0 insertions, 16 deletions
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;
-}