mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: move C struct declarations in their own _default.c.v files (#12268)
This commit is contained in:
11
vlib/os/os_structs_sigaction_default.c.v
Normal file
11
vlib/os/os_structs_sigaction_default.c.v
Normal file
@ -0,0 +1,11 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user