mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
160 B
V
12 lines
160 B
V
module os
|
|
|
|
pub type FN_SA_Handler = fn (sig int)
|
|
|
|
struct C.sigaction {
|
|
mut:
|
|
sa_mask int
|
|
sa_sigaction int
|
|
sa_flags int
|
|
sa_handler FN_SA_Handler
|
|
}
|