mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
14 lines
281 B
V
14 lines
281 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)
|
|
}
|
|
|
|
pub fn panic_debug(s string) {
|
|
//write(1, s.str, s.len)
|
|
}
|
|
|