xref
: /
third_party
/
musl
/
src
/
stdio
/
putchar.c
(revision 570af302)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/musl/src/stdio/
1
#
include
<
stdio.h
>
2
#
include
"
putc.h
"
3
4
int
putchar
(
int
c)
5
{
6
return
do_putc
(c,
stdout
);
7
}
8