]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdio-common/tst-setvbuf1.c
[powerpc] No need to enter "Ignore Exceptions Mode"
[thirdparty/glibc.git] / stdio-common / tst-setvbuf1.c
CommitLineData
75684bd7
UD
1#include <stdio.h>
2
3static int
4do_test (void)
5{
6 if (setvbuf (stderr, NULL, _IOFBF, BUFSIZ) != 0)
7 {
8 puts ("Set full buffer error.");
9 return 1;
10 }
11
12 fprintf (stderr, "Output #1 <stderr>.\n");
13 printf ("Output #2 <stdout>.\n");
14
15 return 0;
16}
17
18#define TEST_FUNCTION do_test ()
19#include "../test-skeleton.c"