]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdio-common/scanf12.c
[powerpc] No need to enter "Ignore Exceptions Mode"
[thirdparty/glibc.git] / stdio-common / scanf12.c
CommitLineData
8d8c6efa
UD
1#include <stdio.h>
2#include <stdlib.h>
3
4int
5main (void)
6{
7 double d;
8 int c;
9
fcc10ffa 10 if (scanf ("%lg", &d) != 0)
8d8c6efa
UD
11 {
12 printf ("scanf didn't failed\n");
13 exit (1);
14 }
15 c = getchar ();
16 if (c != ' ')
17 {
18 printf ("c is `%c', not ` '\n", c);
19 exit (1);
20 }
21
22 return 0;
23}