| 4 | import { syscallTbl } from './table'; |
| 5 | |
| 6 | export interface SyscallCallback { |
| 7 | (response: [number, number, number]): void; |
| 8 | } |
| 9 | |
| 10 | // for gopherjs |
| 11 | export function Syscall(cb: Function, trap: number): void { |
nothing calls this directly
no outgoing calls
no test coverage detected