diff options
author | Damien George <damien.p.george@gmail.com> | 2014-12-10 22:07:04 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-12-10 22:08:14 +0000 |
commit | 969a6b37bfc655609e540053c2bdcce8a6fdc64d (patch) | |
tree | 5e7d74f72d702efd07ff6ba6d93d3a10e4e00fd2 /py/pfenv_printf.c | |
parent | d51107927d53a80835195ba1ac97048c203f05f2 (diff) |
py: Make functions static where appropriate.
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 c0e826a5d..9e65fea9d 100644 --- a/py/pfenv_printf.c +++ b/py/pfenv_printf.c @@ -40,7 +40,7 @@ #include "formatfloat.h" #endif -int pfenv_vprintf(const pfenv_t *pfenv, const char *fmt, va_list args) { +STATIC int pfenv_vprintf(const pfenv_t *pfenv, const char *fmt, va_list args) { int chrs = 0; for (;;) { { |