commit 47102e73f6133bbfe2c3db7ab442c0425f5e09c3 parent d9f9fcbaff9b3b788e92c0f0f1616b0ad949cf5d Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Sun, 5 Mar 2017 19:40:57 +0100 [libc] Fix 96412d commit Diffstat:
M | libc/include/stdio.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libc/include/stdio.h b/libc/include/stdio.h @@ -96,7 +96,7 @@ extern int ferror(FILE *fp); extern void perror(const char *s); #ifdef __USE_MACROS -#define printf(fmt, ...) fprintf(stdin, fmt, __VA_ARGS__) +#define printf(...) fprintf(stdout, __VA_ARGS__) #endif #endif