Skip to content

Commit 811ed7f

Browse files
committed
fixup! Add fallback impls for sleep and time functions
1 parent a993efc commit 811ed7f

File tree

1 file changed

+1
-2
lines changed
  • library/std/src/sys/pal/windows

1 file changed

+1
-2
lines changed

library/std/src/sys/pal/windows/c.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,7 @@ compat_fn_with_fallback! {
402402
lpargtocompletionroutine: *const core::ffi::c_void,
403403
fresume: BOOL
404404
) -> BOOL {
405-
unsafe { SetLastError(ERROR_CALL_NOT_IMPLEMENTED as u32); };
406-
FALSE
405+
rtabort!("unimplemented")
407406
}
408407
}
409408

0 commit comments

Comments
 (0)