Skip to content

Commit 4bc0c62

Browse files
committed
chore: wip
1 parent 647bde5 commit 4bc0c62

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/windows/mod.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,11 @@ extern "C" {
401401
// Under Windows x86 with GNU, `time_t` is still 32-bit wide on stable, so
402402
// these routines have to link with their 32-bit variants.
403403
cfg_if! {
404-
if #[cfg(all(target_arch = "x86", target_env = "gnu", not(gnu_time_bits64)))] {
404+
if #[cfg(all(
405+
target_arch = "x86",
406+
target_env = "gnu",
407+
not(gnu_time_bits64)
408+
))] {
405409
#[link_name = "_ctime32"]
406410
pub fn ctime(sourceTime: *const time_t) -> *mut c_char;
407411
#[link_name = "_difftime32"]

0 commit comments

Comments
 (0)