]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/stdio/putc.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / stdio / putc.c
1 #include <stdio.h>
2 #include "putc.h"
3
4 int putc(int c, FILE *f)
5 {
6 return do_putc(c, f);
7 }
8
9 weak_alias(putc, _IO_putc);