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.
2 parents b45ecd6 + 27a8e24 commit 933b21aCopy full SHA for 933b21a
core/src/ffi/mod.rs
@@ -615,12 +615,15 @@ impl<'f> Drop for VaListImpl<'f> {
615
extern "rust-intrinsic" {
616
/// Destroy the arglist `ap` after initialization with `va_start` or
617
/// `va_copy`.
618
+ #[rustc_nounwind]
619
fn va_end(ap: &mut VaListImpl<'_>);
620
621
/// Copies the current location of arglist `src` to the arglist `dst`.
622
623
fn va_copy<'f>(dest: *mut VaListImpl<'f>, src: &VaListImpl<'f>);
624
625
/// Loads an argument of type `T` from the `va_list` `ap` and increment the
626
/// argument `ap` points to.
627
628
fn va_arg<T: sealed_trait::VaArgSafe>(ap: &mut VaListImpl<'_>) -> T;
629
}
0 commit comments