From 7eb2317fa23d96ef5d312a28590543e6890d7a5b Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 10 Dec 2014 22:11:01 +0000 Subject: [PATCH] py: Remove static from definition of pfenv_printf. It's used by stmhal, but not unix. --- py/pfenv_printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/pfenv_printf.c b/py/pfenv_printf.c index 9e65fea9d3..c0e826a5d2 100644 --- a/py/pfenv_printf.c +++ b/py/pfenv_printf.c @@ -40,7 +40,7 @@ #include "formatfloat.h" #endif -STATIC int pfenv_vprintf(const pfenv_t *pfenv, const char *fmt, va_list args) { +int pfenv_vprintf(const pfenv_t *pfenv, const char *fmt, va_list args) { int chrs = 0; for (;;) { {