From 68fd7eebe255bd8bd2231db353a266c1bc1e911f Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 28 Oct 2016 15:12:30 -0600 Subject: [PATCH] Can import unwind now --- src/libstd/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index bcd03d2856a7..219f244be29c 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -316,7 +316,7 @@ extern crate rustc_unicode; extern crate libc; // We always need an unwinder currently for backtraces -//REDOX TODO extern crate unwind; +extern crate unwind; #[cfg(stage0)] extern crate alloc_system;