---------------------------------------------------------------------------*/ __s64 */ ---------------------------------------------------------------------------*/
| 24 | /* __s64 */ |
| 25 | /*---------------------------------------------------------------------------*/ |
| 26 | static int tostring_s64(lua_State *L) |
| 27 | { |
| 28 | char temp[64]; |
| 29 | sprintf(temp, "%I64d", *(long long*)lua_topointer(L, 1)); |
| 30 | lua_pushstring(L, temp); |
| 31 | return 1; |
| 32 | } |
| 33 | |
| 34 | /*---------------------------------------------------------------------------*/ |
| 35 | static int eq_s64(lua_State *L) |
nothing calls this directly
no test coverage detected