1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
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.
This commit is contained in:
Ulrich Drepper
1999-09-06 22:16:55 +00:00
parent 7fcc87f467
commit 39d31947cf
16 changed files with 18 additions and 1077 deletions

View File

@ -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;
}