1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/builtin/bare/builtin_bare.v
Alexander Medvednikov d1b8d34dd5 os_linux.v
2019-11-16 09:16:51 +03:00

10 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)
}