We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ae9432 commit 98d09e7Copy full SHA for 98d09e7
vm/src/stdlib/time.rs
@@ -18,6 +18,7 @@ pub(crate) fn make_module(vm: &VirtualMachine) -> PyRef<PyModule> {
18
#[cfg(not(target_env = "msvc"))]
19
#[cfg(not(target_arch = "wasm32"))]
20
extern "C" {
21
+ #[cfg(not(target_os = "freebsd"))]
22
#[link_name = "daylight"]
23
static c_daylight: std::ffi::c_int;
24
// pub static dstbias: std::ffi::c_int;
@@ -163,6 +164,7 @@ mod decl {
163
164
unsafe { super::c_timezone }
165
}
166
167
168
169
170
#[pyattr]
0 commit comments