summaryrefslogtreecommitdiff
path: root/src/stdio/putc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/putc.c')
-rw-r--r--src/stdio/putc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stdio/putc.c b/src/stdio/putc.c
new file mode 100644
index 0000000..4744d97
--- /dev/null
+++ b/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);