diff options
| author | Damien George | 2014-12-10 22:11:01 +0000 |
|---|---|---|
| committer | Damien George | 2014-12-10 22:11:01 +0000 |
| commit | 7eb2317fa23d96ef5d312a28590543e6890d7a5b (patch) | |
| tree | 8efb939b8c7d16067713295bbf238ee958ed011d /py/pfenv_printf.c | |
| parent | 969a6b37bfc655609e540053c2bdcce8a6fdc64d (diff) | |
py: Remove static from definition of pfenv_printf.
It's used by stmhal, but not unix.
Diffstat (limited to 'py/pfenv_printf.c')
| -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 9e65fea9d..c0e826a5d 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 (;;) { { |
