summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/putc.c
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2004-03-17 01:43:08 +0000
committertjr <tjr@FreeBSD.org>2004-03-17 01:43:08 +0000
commitb4d98c68558acbe9782e24963999f922d52ccf28 (patch)
treea146c0d7f2efde65782926d4c69016d3b4715398 /lib/libc/stdio/putc.c
parent131892ca17e9e6a23bd98f9bef05d035b36d2790 (diff)
downloadFreeBSD-src-b4d98c68558acbe9782e24963999f922d52ccf28.zip
FreeBSD-src-b4d98c68558acbe9782e24963999f922d52ccf28.tar.gz
Re-add macro versions of getc(), getchar(), putc(), putchar(), feof(),
ferror(), fileno() and clearerr(), using the value of __isthreaded to decide between the fast inline single-threaded code and the more general function equivalent. This gives most of the performance benefits of the old unsafe macros while preserving thread safety.
Diffstat (limited to 'lib/libc/stdio/putc.c')
-rw-r--r--lib/libc/stdio/putc.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/libc/stdio/putc.c b/lib/libc/stdio/putc.c
index 95a9cac..b42f878 100644
--- a/lib/libc/stdio/putc.c
+++ b/lib/libc/stdio/putc.c
@@ -46,14 +46,8 @@ __FBSDID("$FreeBSD$");
#include "local.h"
#include "libc_private.h"
-/*
- * putc has traditionally been a macro in <stdio.h>. That is no
- * longer true because POSIX requires it to be thread-safe. POSIX
- * does define putc_unlocked() which is defined as a macro and is
- * probably what you want to use instead.
- *
- * #undef putc
- */
+#undef putc
+
int
putc(c, fp)
int c;
OpenPOWER on IntegriCloud