diff options
author | Damien <damien.p.george@gmail.com> | 2013-12-17 18:27:24 +0000 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-12-17 18:27:24 +0000 |
commit | 660365e14c7205581f38cf61923a7a88a84f893f (patch) | |
tree | 7add583ec920d36a670a79ae56ae891292cec99f /py/builtin.h | |
parent | a1b2693161183fb6052271d8ea1809e48d75d144 (diff) |
py: split runtime into map, obj, builtin.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/builtin.h b/py/builtin.h new file mode 100644 index 000000000..6ca1752bd --- /dev/null +++ b/py/builtin.h @@ -0,0 +1,6 @@ +py_obj_t py_builtin___repl_print__(py_obj_t o); +py_obj_t py_builtin_print(int n_args, const py_obj_t* args); +py_obj_t py_builtin_len(py_obj_t o_in); +py_obj_t py_builtin_abs(py_obj_t o_in); +py_obj_t py_builtin___build_class__(py_obj_t o_class_fun, py_obj_t o_class_name); +py_obj_t py_builtin_range(int n_args, const py_obj_t* args); |