diff options
| author | bors <bors@rust-lang.org> | 2014-08-23 01:40:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-08-23 01:40:48 +0000 |
| commit | 2e5aea65cd2594f19b9043d8df0e6461504cda9b (patch) | |
| tree | 3007df22185ca153033ab9216e8369d8c53ef249 | |
| parent | 75396b2a06a9372ed4ddcc3e5bcf56d18f1973ae (diff) | |
| parent | be8bd24e3190237469f74a426c9daa12c70d3de1 (diff) | |
| download | rust-2e5aea65cd2594f19b9043d8df0e6461504cda9b.tar.gz rust-2e5aea65cd2594f19b9043d8df0e6461504cda9b.zip | |
auto merge of #16667 : retep998/rust/master, r=pcwalton
| -rw-r--r-- | src/librustrt/unwind.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/librustrt/unwind.rs b/src/librustrt/unwind.rs index 58012002c4f..08e182a6d6e 100644 --- a/src/librustrt/unwind.rs +++ b/src/librustrt/unwind.rs @@ -402,8 +402,11 @@ pub mod eabi { use libunwind as uw; use libc::{c_void, c_int}; + #[repr(C)] struct EXCEPTION_RECORD; + #[repr(C)] struct CONTEXT; + #[repr(C)] struct DISPATCHER_CONTEXT; #[repr(C)] |
