ffi_returns_twice is removed

Summary: forward compat fix: feature ffi_returns_twice is removed in 1.78.0.

Reviewed By: dtolnay

Differential Revision: D56452209

fbshipit-source-id: f5d9f9dbd63c1213ef71d023f08e97a793f9e525
This commit is contained in:
Shayne Fletcher 2024-04-23 14:42:40 -07:00 committed by Facebook GitHub Bot
parent d296065b47
commit ef50616df9
2 changed files with 0 additions and 3 deletions

View file

@ -16,7 +16,6 @@ extern "C" {
// compiler optimizations. Because of this, vfork *must* be implemented in
// raw assembly. It can't be safely implemented in Rust inline asm. For more
// information, see: https://github.com/rust-lang/libc/issues/1596
#[ffi_returns_twice]
pub fn vfork_syscall() -> usize;
}

View file

@ -6,8 +6,6 @@
* LICENSE file in the root directory of this source tree.
*/
#![feature(ffi_returns_twice)]
//! This library provides an ergonomic interface writing SaBRe plugins with
//! Rust.