Skip to content

Commit

Permalink
Fix cloudabi abi import in libstd
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Apr 1, 2019
1 parent 17d36f6 commit 3a9b689
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/src/thread_parker/cloudabi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

#[cfg(not(feature = "i-am-libstd"))]
use cloudabi as abi;
#[cfg(feature = "i-am-libstd")]
use crate::sys::abi;
use core::{
cell::Cell,
mem,
Expand Down

0 comments on commit 3a9b689

Please sign in to comment.