Commit 1818da2e authored by Paul Sokolovsky's avatar Paul Sokolovsky

lib/utils/printf: Fix issue with putchar define for some ports.

parent 8ee43e24
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "py/formatfloat.h" #include "py/formatfloat.h"
#endif #endif
#undef putchar // Some stdlibs have a #define for putchar
int printf(const char *fmt, ...); int printf(const char *fmt, ...);
int vprintf(const char *fmt, va_list ap); int vprintf(const char *fmt, va_list ap);
int putchar(int c); int putchar(int c);
...@@ -72,7 +73,6 @@ int DEBUG_printf(const char *fmt, ...) { ...@@ -72,7 +73,6 @@ int DEBUG_printf(const char *fmt, ...) {
#endif #endif
// need this because gcc optimises printf("%c", c) -> putchar(c), and printf("a") -> putchar('a') // need this because gcc optimises printf("%c", c) -> putchar(c), and printf("a") -> putchar('a')
#undef putchar // Some stdlibs have a #define for putchar
int putchar(int c) { int putchar(int c) {
char chr = c; char chr = c;
mp_hal_stdout_tx_strn_cooked(&chr, 1); mp_hal_stdout_tx_strn_cooked(&chr, 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment