diff options
Diffstat (limited to 'libc-top-half/musl/src/stdio/putc.c')
-rw-r--r-- | libc-top-half/musl/src/stdio/putc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdio/putc.c b/libc-top-half/musl/src/stdio/putc.c new file mode 100644 index 0000000..4744d97 --- /dev/null +++ b/libc-top-half/musl/src/stdio/putc.c @@ -0,0 +1,9 @@ +#include <stdio.h> +#include "putc.h" + +int putc(int c, FILE *f) +{ + return do_putc(c, f); +} + +weak_alias(putc, _IO_putc); |