rust/src/test/run-pass/lang-item-public.rs

43 lines
981 B
Rust
Raw Normal View History

// Copyright 2014 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 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// aux-build:lang-item-public.rs
// ignore-android
2014-04-06 00:18:52 -05:00
// ignore-win32 #13361
2014-04-06 00:18:52 -05:00
#![no_std]
extern crate lang_lib = "lang-item-public";
#[cfg(target_os = "linux")]
#[link(name = "c")]
extern {}
#[cfg(target_os = "android")]
#[link(name = "c")]
extern {}
#[cfg(target_os = "freebsd")]
#[link(name = "execinfo")]
extern {}
2014-07-30 19:23:35 -05:00
#[cfg(target_os = "dragonfly")]
#[link(name = "c")]
extern {}
#[cfg(target_os = "macos")]
#[link(name = "System")]
extern {}
#[start]
2014-06-25 14:47:34 -05:00
fn main(_: int, _: *const *const u8) -> int {
1 % 1
}