| 616 | |
| 617 | |
| 618 | static void auxopen (lua_State *L, const char *name, |
| 619 | lua_CFunction f, lua_CFunction u) { |
| 620 | lua_pushcfunction(L, u); |
| 621 | lua_pushcclosure(L, f, 1); |
| 622 | lua_setfield(L, -2, name); |
| 623 | } |
| 624 | |
| 625 | |
| 626 | static void base_open (lua_State *L) { |
no test coverage detected