mirror of
https://github.com/vlang/v.git
synced 2025-09-16 16:02:29 +03:00
9 lines
221 B
V
9 lines
221 B
V
module builtin
|
|
|
|
//pub fn syscall5(number, arg1, arg2, arg3, arg4, arg5 voidptr) voidptr
|
|
//pub fn syscall6(number, arg1, arg2, arg3, arg4, arg5, arg6 voidptr) voidptr
|
|
|
|
pub fn panic(s string) {
|
|
//write(1, s.str, s.len)
|
|
}
|
|
|