| 210 | |
| 211 | |
| 212 | static int os_difftime (lua_State *L) { |
| 213 | lua_pushnumber(L, difftime((time_t)(luaL_checknumber(L, 1)), |
| 214 | (time_t)(luaL_optnumber(L, 2, 0)))); |
| 215 | return 1; |
| 216 | } |
| 217 | |
| 218 | /* }====================================================== */ |
| 219 |
nothing calls this directly
no test coverage detected