repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
riscv32: add dlsym
[musl.git]
/
src
/
stdio
/
fputc.c
blob
f364ed38ba7471d3ca80f2d21560737eca642042
1
#include <stdio.h>
2
#include
"putc.h"
3
4
int
fputc
(
int
c
,
FILE
*
f
)
5
{
6
return
do_putc
(
c
,
f
);
7
}