summaryrefslogtreecommitdiff
path: root/stdio-common/tst-unbputc.c
blob: 7200a82a2a141c6e05a51ef2b964273c59ffdc2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>


static int
do_test (void)
{
  putc ('1', stderr);
  putc ('2', stderr);

  return 0;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"