zig
Code
Branches
Tags
Commits
master
zig
/
lib
/
libc
/
wasi
/
libc-top-half
/
musl
/
src
/
stdio
/
fputc.c
Top
1
#
include
<stdio.h>
2
#
include
"putc.h"
3
4
int
fputc
(
int
c
,
FILE
*
f
)
5
{
6
return
do_putc
(
c
,
f
)
;
7
}