glibc/stdio-common/tst-setvbuf1.c
Ulrich Drepper 75684bd7a8 * stdio-common/Makefile: Add rules to build and run tst-setvbuf1.
* stdio-common/tst-setvbuf1.c: New file.
	* stdio-common/tst-setvbuf1.expect: New file.
2008-07-08 16:32:55 +00:00

20 lines
327 B
C

#include <stdio.h>
static int
do_test (void)
{
if (setvbuf (stderr, NULL, _IOFBF, BUFSIZ) != 0)
{
puts ("Set full buffer error.");
return 1;
}
fprintf (stderr, "Output #1 <stderr>.\n");
printf ("Output #2 <stdout>.\n");
return 0;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"