repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't crash in iconv setup when getcwd fails.
[glibc.git]
/
stdio-common
/
tst-unbputc.c
blob
7200a82a2a141c6e05a51ef2b964273c59ffdc2b
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"