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