mirror of
https://github.com/facebookexperimental/reverie.git
synced 2024-11-24 12:17:50 +00:00
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:
parent
d296065b47
commit
ef50616df9
2 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue