---------------------------------------------------------------------------*/
| 33 | |
| 34 | /*---------------------------------------------------------------------------*/ |
| 35 | static int eq_s64(lua_State *L) |
| 36 | { |
| 37 | lua_pushboolean(L, memcmp(lua_topointer(L, 1), lua_topointer(L, 2), sizeof(long long)) == 0); |
| 38 | return 1; |
| 39 | } |
| 40 | |
| 41 | /*---------------------------------------------------------------------------*/ |
| 42 | static int lt_s64(lua_State *L) |
nothing calls this directly
no test coverage detected