]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdio-common/scanf2.c
[powerpc] No need to enter "Ignore Exceptions Mode"
[thirdparty/glibc.git] / stdio-common / scanf2.c
CommitLineData
a66067be
RM
1#include <stdio.h>
2#include <stdlib.h>
3
11336c16
UD
4int
5main(int argc, char *argv[])
a66067be
RM
6{
7 int point, x, y;
8
9 point = x = y = -1;
10 sscanf("0x10 10", "%x %x", &x, &y);
11 printf("%d %d\n", x, y);
12 if (x != 0x10 || y != 0x10)
13 abort ();
14 point = x = y = -1;
15 sscanf("P012349876", "P%1d%4d%4d", &point, &x, &y);
16 printf("%d %d %d\n", point, x, y);
17 if (point != 0 || x != 1234 || y != 9876)
18 abort ();
19 point = x = y = -1;
20 sscanf("P112349876", "P%1d%4d%4d", &point, &x, &y);
21 printf("%d %d %d\n", point, x, y);
22 if (point != 1 || x != 1234 || y != 9876)
23 abort ();
24 return 0;
11336c16 25}