mirror of
https://github.com/vlang/v.git
synced 2025-09-08 14:51:53 -04:00
12 lines
151 B
V
12 lines
151 B
V
module sync
|
|
|
|
@[noreturn]
|
|
fn cpanic(res int) {
|
|
panic(unsafe { tos_clone(&u8(C.strerror(res))) })
|
|
}
|
|
|
|
@[noreturn]
|
|
fn cpanic_errno() {
|
|
cpanic(C.errno)
|
|
}
|