summaryrefslogtreecommitdiffstats
path: root/library/std/src/personality/gcc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/personality/gcc.rs')
-rw-r--r--library/std/src/personality/gcc.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/std/src/personality/gcc.rs b/library/std/src/personality/gcc.rs
index 5fc1b91a1..41c0fe725 100644
--- a/library/std/src/personality/gcc.rs
+++ b/library/std/src/personality/gcc.rs
@@ -37,7 +37,8 @@
//! and the last personality routine transfers control to the catch block.
use super::dwarf::eh::{self, EHAction, EHContext};
-use libc::{c_int, uintptr_t};
+use crate::ffi::c_int;
+use libc::uintptr_t;
use unwind as uw;
// Register ids were lifted from LLVM's TargetLowering::getExceptionPointerRegister()