Chromium Code Reviews| Index: fusl/src/stdio/putchar_unlocked.c |
| diff --git a/fusl/src/stdio/putchar_unlocked.c b/fusl/src/stdio/putchar_unlocked.c |
| index 8b5d06034162679e604e3e4666ccf2a423050d1a..6bcdfa8c254dca77ce2efd5d98c211ff5e689678 100644 |
| --- a/fusl/src/stdio/putchar_unlocked.c |
| +++ b/fusl/src/stdio/putchar_unlocked.c |
| @@ -1,6 +1,5 @@ |
| #include "stdio_impl.h" |
| -int putchar_unlocked(int c) |
| -{ |
| - return putc_unlocked(c, stdout); |
| +int putchar_unlocked(int c) { |
| + return putc_unlocked(c, stdout); |
| } |