summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-12-10 22:11:01 +0000
committerDamien George <damien.p.george@gmail.com>2014-12-10 22:11:01 +0000
commit7eb2317fa23d96ef5d312a28590543e6890d7a5b (patch)
tree8efb939b8c7d16067713295bbf238ee958ed011d /py
parent969a6b37bfc655609e540053c2bdcce8a6fdc64d (diff)
downloadmicropython-7eb2317fa23d96ef5d312a28590543e6890d7a5b.tar.gz
micropython-7eb2317fa23d96ef5d312a28590543e6890d7a5b.zip
py: Remove static from definition of pfenv_printf.
It's used by stmhal, but not unix.
Diffstat (limited to 'py')
-rw-r--r--py/pfenv_printf.c2
1 files changed, 1 insertions, 1 deletions
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 (;;) {
{