summaryrefslogtreecommitdiff
path: root/src/stdio/putchar_unlocked.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/putchar_unlocked.c')
-rw-r--r--src/stdio/putchar_unlocked.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/stdio/putchar_unlocked.c b/src/stdio/putchar_unlocked.c
index be048b20..f998bf10 100644
--- a/src/stdio/putchar_unlocked.c
+++ b/src/stdio/putchar_unlocked.c
@@ -1,15 +1,11 @@
-#if 0
-
#include <stdio.h>
int putchar_unlocked(int c)
{
+ SIGNAL_SAFE(0);
return putc_unlocked(c, stdout);
}
/*
POSIX(199506)
*/
-
-
-#endif