about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/stdio/fputc.c9
-rw-r--r--src/stdio/putc.c9
-rw-r--r--src/stdio/putchar.c3
3 files changed, 8 insertions, 13 deletions
diff --git a/src/stdio/fputc.c b/src/stdio/fputc.c
index 92762c98..f364ed38 100644
--- a/src/stdio/fputc.c
+++ b/src/stdio/fputc.c
@@ -1,10 +1,7 @@
-#include "stdio_impl.h"
+#include <stdio.h>
+#include "putc.h"
 
 int fputc(int c, FILE *f)
 {
-	if (f->lock < 0 || !__lockfile(f))
-		return putc_unlocked(c, f);
-	c = putc_unlocked(c, f);
-	__unlockfile(f);
-	return c;
+	return do_putc(c, f);
 }
diff --git a/src/stdio/putc.c b/src/stdio/putc.c
index fa893496..4744d978 100644
--- a/src/stdio/putc.c
+++ b/src/stdio/putc.c
@@ -1,12 +1,9 @@
-#include "stdio_impl.h"
+#include <stdio.h>
+#include "putc.h"
 
 int putc(int c, FILE *f)
 {
-	if (f->lock < 0 || !__lockfile(f))
-		return putc_unlocked(c, f);
-	c = putc_unlocked(c, f);
-	__unlockfile(f);
-	return c;
+	return do_putc(c, f);
 }
 
 weak_alias(putc, _IO_putc);
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);
 }