]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdio-common/bug21.c
[powerpc] No need to enter "Ignore Exceptions Mode"
[thirdparty/glibc.git] / stdio-common / bug21.c
CommitLineData
26e21e75
UD
1#include <stdio.h>
2
3static int
4do_test (void)
5{
6 static const char buf[] = " ";
7 char *str;
8
03992356 9 int r = sscanf (buf, "%ms", &str);
26e21e75
UD
10 printf ("%d %p\n", r, str);
11
12 return r != -1 || str != NULL;
13}
14
15#define TEST_FUNCTION do_test ()
16#include "../test-skeleton.c"