summaryrefslogtreecommitdiff
path: root/src/stdio/putc_unlocked.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/putc_unlocked.c')
-rw-r--r--src/stdio/putc_unlocked.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/stdio/putc_unlocked.c b/src/stdio/putc_unlocked.c
index 4f658eb5..99af7b39 100644
--- a/src/stdio/putc_unlocked.c
+++ b/src/stdio/putc_unlocked.c
@@ -9,11 +9,6 @@
#define write(_fd, _buf, _size) __syscall(__syscall_lookup(write), _fd, _buf, _size)
#endif
-#if !defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 199506
-#define putc_unlocked __putc_unlocked
- static
-#endif
-
/** write a character to a file stream with explicit client locking **/
int putc_unlocked(int c, FILE *stream)
{