1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/time/time_linux.c.v

25 lines
393 B
V
Raw Normal View History

module time
fn sys_mono_now_darwin() u64 {
return 0
}
// dummy to compile with all compilers
pub fn darwin_now() Time {
return Time{}
}
// dummy to compile with all compilers
pub fn solaris_now() Time {
return Time{}
}
2020-06-10 12:14:55 +03:00
// dummy to compile with all compilers
pub fn darwin_utc() Time {
return Time{}
}
2020-06-10 12:14:55 +03:00
// dummy to compile with all compilers
pub fn solaris_utc() Time {
return Time{}
}