match glibc/lsb cancellation abi on i386
[musl] / src / stdio / putc.c
1 #include "stdio_impl.h"
2
3 int putc(int c, FILE *f)
4 {
5         return fputc(c, f);
6 }
7
8 weak_alias(putc, _IO_putc);