v / vlib / os
Raw file | 15 loc (13 sloc) | 165 bytes | Latest commit hash eed94c727
1module os
2
3struct C.utsname {
4mut:
5 sysname &char
6 nodename &char
7 release &char
8 version &char
9 machine &char
10}
11
12struct C.utimbuf {
13 actime int
14 modtime int
15}