summaryrefslogtreecommitdiff
path: root/py/runtime.h
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2018-11-20 23:04:58 -0500
committerDan Halbert <halbert@halwitz.org>2018-11-20 23:04:58 -0500
commit1763ffe2450fa07c74db225cc5ef3a6e2feb669b (patch)
tree0c6bf99479b1c135928aea9a9d475f01c84ce9d4 /py/runtime.h
parentc424ad844b0241483d5968b7c4f158f61d498752 (diff)
More UUID work; use mp_raise for exceptions
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 9c7ffc02f..54f6a3270 100644
--- a/py/runtime.h
+++ b/py/runtime.h
@@ -158,6 +158,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_msg(const compressed_string_t *msg);
NORETURN void mp_raise_NotImplementedError(const compressed_string_t *msg);
NORETURN void mp_raise_recursion_depth(void);