glibc/stdio-common/scanf7.c
Ulrich Drepper 77d10f94bf Update.
* version.h (VERSION): Bump to 2.0.102.

	* stdio-common/tstdiomisc.c (t2): Update test case for last scanf
	change.
	* stdio-common/scanf7.c (main): Likewise.

1998-11-13  Ulrich Drepper  <drepper@cygnus.com>
1998-11-13 19:03:53 +00:00

24 lines
397 B
C

#include <stdio.h>
#include <stdlib.h>
int
main (int argc, char *argv[])
{
long long int n;
int ret;
n = -1;
ret = sscanf ("1000", "%lld", &n);
printf ("%%lld: ret: %d, n: %Ld\n", ret, n);
if (ret != 1 || n != 1000L)
abort ();
n = -2;
ret = sscanf ("1000", "%llld", &n);
printf ("%%llld: ret: %d, n: %Ld\n", ret, n);
if (ret > 0 || n >= 0L)
abort ();
return 0;
}