summaryrefslogtreecommitdiffstatshomepage
path: root/lib/utils
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-26 17:53:28 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-26 17:53:28 +0300
commit3cdccb9b1429bc3afd04ec3f9171b373fe939375 (patch)
treeed648fa0baf48987af3307c5959c6080f4f43790 /lib/utils
parent6832cbd69d04db1703b8b17939d8cd894aea4c68 (diff)
downloadmicropython-3cdccb9b1429bc3afd04ec3f9171b373fe939375.tar.gz
micropython-3cdccb9b1429bc3afd04ec3f9171b373fe939375.zip
zephyr: Fix mp_hal_set_interrupt_char() declaration to be compatible.
With other ports. Other ports declare it in mphalport.h, it can be inline or macro.
Diffstat (limited to 'lib/utils')
-rw-r--r--lib/utils/pyexec.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/utils/pyexec.c b/lib/utils/pyexec.c
index b398d72661..61cd5a98ce 100644
--- a/lib/utils/pyexec.c
+++ b/lib/utils/pyexec.c
@@ -53,8 +53,6 @@ STATIC bool repl_display_debugging_info = 0;
#define EXEC_FLAG_IS_REPL (4)
#define EXEC_FLAG_SOURCE_IS_RAW_CODE (8)
-extern void mp_hal_set_interrupt_char (int c);
-
// parses, compiles and executes the code in the lexer
// frees the lexer before returning
// EXEC_FLAG_PRINT_EOF prints 2 EOF chars: 1 after normal output, 1 after exception output