mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
11 lines
164 B
V
11 lines
164 B
V
module os
|
|
|
|
pub type FN_SA_Handler = fn (sig int)
|
|
|
|
pub struct C.sigaction {
|
|
mut:
|
|
sa_mask int
|
|
sa_sigaction int
|
|
sa_flags int
|
|
sa_handler FN_SA_Handler
|
|
}
|