---------------------------------------------------------------------------*/
| 40 | |
| 41 | /*---------------------------------------------------------------------------*/ |
| 42 | static int lt_s64(lua_State *L) |
| 43 | { |
| 44 | lua_pushboolean(L, memcmp(lua_topointer(L, 1), lua_topointer(L, 2), sizeof(long long)) < 0); |
| 45 | return 1; |
| 46 | } |
| 47 | |
| 48 | /*---------------------------------------------------------------------------*/ |
| 49 | static int le_s64(lua_State *L) |
nothing calls this directly
no test coverage detected