From d664061adb4d7f6647ab2059bc351daa394bf5da Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 17 Oct 2018 23:38:29 -0400 Subject: optimize hot paths of putc with manual shrink-wrapping this is the analog of commit dd8f02b7dce53d6b1c4282439f1636a2d63bee01, but for putc. --- src/stdio/putchar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/stdio/putchar.c') 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 +#include "putc.h" int putchar(int c) { - return fputc(c, stdout); + return do_putc(c, stdout); } -- cgit 1.4.1