xref
: /
third_party
/
ulib
/
musl
/
src
/
stdio
/
putchar.c
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
stdio.h
>
2
putchar(int c)
3
int
putchar
(
int
c
) {
4
return
fputc
(
c
,
stdout
);
5
}
6