diff options
author | Damien George <damien.p.george@gmail.com> | 2014-12-10 22:11:01 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-12-10 22:11:01 +0000 |
commit | 7eb2317fa23d96ef5d312a28590543e6890d7a5b (patch) | |
tree | 8efb939b8c7d16067713295bbf238ee958ed011d /py | |
parent | 969a6b37bfc655609e540053c2bdcce8a6fdc64d (diff) | |
download | micropython-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.c | 2 |
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 (;;) { { |