diff options
author | Damien <damien.p.george@gmail.com> | 2013-11-02 19:47:57 +0000 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-11-02 19:47:57 +0000 |
commit | 7410e440aba6826629e850f69a38615ad1039814 (patch) | |
tree | 4b0595b0f1972a3ba776787d31383540c9b5d513 /py/runtime.h | |
parent | fecee2b0ae7c9131f41f80f6aeb5f0c7be93c291 (diff) |
Add basic complex number support.
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h index f8c4972b0..541c4de8f 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -102,6 +102,7 @@ machine_float_t py_obj_get_float(py_obj_t arg); qstr py_get_qstr(py_obj_t arg); py_obj_t *py_get_array_fixed_n(py_obj_t o, machine_int_t n); py_obj_t py_obj_new_int(machine_int_t value); +py_obj_t rt_load_const_dec(qstr qstr); py_obj_t rt_load_const_str(qstr qstr); py_obj_t rt_load_name(qstr qstr); py_obj_t rt_load_global(qstr qstr); |