(L *LState)
| 73 | } |
| 74 | |
| 75 | func osDiffTime(L *LState) int { |
| 76 | L.Push(LNumber(L.CheckInt64(1) - L.CheckInt64(2))) |
| 77 | return 1 |
| 78 | } |
| 79 | |
| 80 | func osExecute(L *LState) int { |
| 81 | var procAttr os.ProcAttr |
nothing calls this directly
no test coverage detected
searching dependent graphs…