---------------------------------------------------------------------------*/
| 94 | |
| 95 | /*---------------------------------------------------------------------------*/ |
| 96 | static int eq_u64(lua_State *L) |
| 97 | { |
| 98 | lua_pushboolean(L, memcmp(lua_topointer(L, 1), lua_topointer(L, 2), sizeof(unsigned long long)) == 0); |
| 99 | return 1; |
| 100 | } |
| 101 | |
| 102 | /*---------------------------------------------------------------------------*/ |
| 103 | static int lt_u64(lua_State *L) |
nothing calls this directly
no test coverage detected