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:
13
vlib/os/os_structs_stat_default.c.v
Normal file
13
vlib/os/os_structs_stat_default.c.v
Normal file
@@ -0,0 +1,13 @@
|
||||
module os
|
||||
|
||||
struct C.stat {
|
||||
st_size u64
|
||||
st_mode u32
|
||||
st_mtime int
|
||||
}
|
||||
|
||||
struct C.__stat64 {
|
||||
st_size u64
|
||||
st_mode u32
|
||||
st_mtime int
|
||||
}
|
||||
Reference in New Issue
Block a user