| 186 | |
| 187 | LEAN_EXPORT void leanpy_inc(b_lean_obj_arg o) { lean_inc(o); } |
| 188 | LEAN_EXPORT void leanpy_dec(lean_obj_arg o) { lean_dec(o); } |
| 189 | LEAN_EXPORT void leanpy_inc_ref(b_lean_obj_arg o) { lean_inc_ref(o); } |
| 190 | LEAN_EXPORT void leanpy_dec_ref(lean_obj_arg o) { lean_dec_ref(o); } |
| 191 | LEAN_EXPORT void leanpy_inc_ref_n(b_lean_obj_arg o, size_t n) { lean_inc_ref_n(o, n); } |
nothing calls this directly
no test coverage detected