mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
15 lines
173 B
V
15 lines
173 B
V
module os
|
|
|
|
pub struct C.utsname {
|
|
mut:
|
|
sysname &char
|
|
nodename &char
|
|
release &char
|
|
version &char
|
|
machine &char
|
|
}
|
|
|
|
pub struct C.utimbuf {
|
|
actime int
|
|
modtime int
|
|
}
|