summaryrefslogtreecommitdiff
path: root/py/runtime.h
diff options
context:
space:
mode:
authorDrew Fustini <drew@pdp7.com>2020-02-10 00:11:35 +0100
committerGitHub <noreply@github.com>2020-02-10 00:11:35 +0100
commit7bdc8b36a697cff816e6e449706bb060f66b3229 (patch)
tree5e7ef62c0a1635febaf90734638d161d9f9228bd /py/runtime.h
parent3aed0a1fd721550bedd8f2258707f58eb9927404 (diff)
parentb93d6e861b80d34ff3b09f4f84a85a6bfd531f3d (diff)
Merge pull request #1 from adafruit/master
update to adafruit master
Diffstat (limited to 'py/runtime.h')
-rw-r--r--py/runtime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h
index 4121352df..f81103557 100644
--- a/py/runtime.h
+++ b/py/runtime.h
@@ -161,6 +161,7 @@ NORETURN void mp_raise_RuntimeError(const compressed_string_t *msg);
NORETURN void mp_raise_ImportError(const compressed_string_t *msg);
NORETURN void mp_raise_IndexError(const compressed_string_t *msg);
NORETURN void mp_raise_OSError(int errno_);
+NORETURN void mp_raise_OSError_errno_str(int errno_, mp_obj_t str);
NORETURN void mp_raise_OSError_msg(const compressed_string_t *msg);
NORETURN void mp_raise_OSError_msg_varg(const compressed_string_t *fmt, ...);
NORETURN void mp_raise_NotImplementedError(const compressed_string_t *msg);