mirror of
https://github.com/vlang/v.git
synced 2025-09-08 14:51:53 -04:00
16 lines
173 B
V
16 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
|
|
}
|