From 969a6b37bfc655609e540053c2bdcce8a6fdc64d Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 10 Dec 2014 22:07:04 +0000 Subject: py: Make functions static where appropriate. --- py/repl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/repl.c') diff --git a/py/repl.c b/py/repl.c index 66a67e3d5..6bd880d92 100644 --- a/py/repl.c +++ b/py/repl.c @@ -30,7 +30,7 @@ #if MICROPY_HELPER_REPL -bool str_startswith_word(const char *str, const char *head) { +STATIC bool str_startswith_word(const char *str, const char *head) { mp_uint_t i; for (i = 0; str[i] && head[i]; i++) { if (str[i] != head[i]) { -- cgit v1.2.3