---------------------------------------------------------------------------*/
| 47 | |
| 48 | /*---------------------------------------------------------------------------*/ |
| 49 | static int le_s64(lua_State *L) |
| 50 | { |
| 51 | lua_pushboolean(L, memcmp(lua_topointer(L, 1), lua_topointer(L, 2), sizeof(long long)) <= 0); |
| 52 | return 1; |
| 53 | } |
| 54 | |
| 55 | /*---------------------------------------------------------------------------*/ |
| 56 | void lua_tinker::init_s64(lua_State *L) |
nothing calls this directly
no test coverage detected