]> git.ipfire.org Git - thirdparty/glibc.git/blob - stdio-common/tst-unbputc.c
Improve documentation for malloc etc. (BZ#27719)
[thirdparty/glibc.git] / stdio-common / tst-unbputc.c
1 #include <stdio.h>
2
3
4 static int
5 do_test (void)
6 {
7 putc ('1', stderr);
8 putc ('2', stderr);
9
10 return 0;
11 }
12
13 #define TEST_FUNCTION do_test ()
14 #include "../test-skeleton.c"