2020-04-24 12:28:16 +00:00
|
|
|
module time
|
|
|
|
|
2020-06-07 13:19:09 +00:00
|
|
|
fn sys_mono_now_darwin() u64 {
|
2020-04-24 12:28:16 +00:00
|
|
|
return 0
|
|
|
|
}
|
2020-06-07 13:19:09 +00:00
|
|
|
|
|
|
|
// 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 09:14:55 +00:00
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub fn darwin_utc() Time {
|
|
|
|
return Time{}
|
2020-06-07 13:19:09 +00:00
|
|
|
}
|
2020-06-10 09:14:55 +00:00
|
|
|
|
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub fn solaris_utc() Time {
|
|
|
|
return Time{}
|
|
|
|
}
|