diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-08 11:47:55 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-08 11:47:55 +0000 |
commit | b97669ab9432146c1303dedfaa7b98f7ede3f8db (patch) | |
tree | 773cf5fe2a0cae7951751fd01cd7ca9c9c5fe6f5 /py/builtin.h | |
parent | 6d6bc9efc17c0fd4f28f935280db6d8dee100d4f (diff) | |
download | micropython-b97669ab9432146c1303dedfaa7b98f7ede3f8db.tar.gz micropython-b97669ab9432146c1303dedfaa7b98f7ede3f8db.zip |
py: Improve __build_class__.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtin.h b/py/builtin.h index 9806624206..2cd0ef15f2 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -1,6 +1,6 @@ // TODO convert all these to objects using MP_DECLARE and MP_DEFINE -mp_obj_t mp_builtin___build_class__(mp_obj_t o_class_fun, mp_obj_t o_class_name); +MP_DECLARE_CONST_FUN_OBJ(mp_builtin___build_class___obj); mp_obj_t mp_builtin___import__(int n, mp_obj_t *args); mp_obj_t mp_builtin___repl_print__(mp_obj_t o); mp_obj_t mp_builtin_abs(mp_obj_t o_in); |