diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-06-01 19:59:03 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-06-01 19:59:03 +0200 |
commit | 493d0cc28b0d0fa1dc571ffc876b554376ccdd47 (patch) | |
tree | 3ec057a08c2aad5cf43f55ca94e3b243e409f698 /libc/stdio/fputc.c | |
parent | c526740e06e1f7cc0a4747e319c18cde93523482 (diff) |
remove MJN only debug messages
Diffstat (limited to 'libc/stdio/fputc.c')
-rw-r--r-- | libc/stdio/fputc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index 7876d77af..d4e5d2528 100644 --- a/libc/stdio/fputc.c +++ b/libc/stdio/fputc.c @@ -41,9 +41,6 @@ int __fputc_unlocked(int c, register FILE *stream) ) { goto BAD; } -#ifdef __UCLIBC_MJN3_ONLY__ -#warning CONSIDER: Should we fail if the commit fails but we now have room? -#endif __STDIO_STREAM_BUFFER_ADD(stream, ((unsigned char) c)); |