summaryrefslogtreecommitdiff
path: root/stdio-common/tst-setvbuf1.c
blob: 22410939c99b89537e94d8008e8816971f4a73c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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"