summaryrefslogtreecommitdiff
path: root/src/stdio/putchar.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-10-17 23:38:29 -0400
committerRich Felker <dalias@aerifal.cx>2018-10-17 23:38:29 -0400
commitd664061adb4d7f6647ab2059bc351daa394bf5da (patch)
treef27a25137efcd548a1b48b44ff3a72d73d8f2d6c /src/stdio/putchar.c
parentdd8f02b7dce53d6b1c4282439f1636a2d63bee01 (diff)
downloadmusl-d664061adb4d7f6647ab2059bc351daa394bf5da.tar.gz
optimize hot paths of putc with manual shrink-wrapping
this is the analog of commit dd8f02b7dce53d6b1c4282439f1636a2d63bee01, but for putc.
Diffstat (limited to 'src/stdio/putchar.c')
-rw-r--r--src/stdio/putchar.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stdio/putchar.c b/src/stdio/putchar.c
index 945636d5..f044f169 100644
--- a/src/stdio/putchar.c
+++ b/src/stdio/putchar.c
@@ -1,6 +1,7 @@
#include <stdio.h>
+#include "putc.h"
int putchar(int c)
{
- return fputc(c, stdout);
+ return do_putc(c, stdout);
}