| 35 | #include "lundump.h" |
| 36 | |
| 37 | LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip) { |
| 38 | UNUSED(f); |
| 39 | UNUSED(w); |
| 40 | UNUSED(data); |
| 41 | UNUSED(strip); |
| 42 | #if 1 |
| 43 | UNUSED(L); |
| 44 | return 0; |
| 45 | #else |
| 46 | lua_pushliteral(L,"dumper not loaded"); |
| 47 | lua_error(L); |
| 48 | #endif |
| 49 | } |
| 50 | #endif |
nothing calls this directly
no test coverage detected