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 dc50ed69cf bare: fix str[idx]
2019-11-16 11:33:04 +03:00

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