// Copyright 2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // See rsbegin.rs for details. #![feature(no_std)] #![crate_type="rlib"] #![no_std] #[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))] pub mod eh_frames { // Terminate the frame unwind info section with a 0 as a sentinel; // this would be the 'length' field in a real FDE. #[no_mangle] #[link_section = ".eh_frame"] pub static __EH_FRAME_END__: u32 = 0; }