aboutsummaryrefslogtreecommitdiff
path: root/tests/no_std_build.rs
blob: 238fa57bf1afdba7a345fe8bc2a8158aace67d4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#![feature(start, libc)]
#![no_std]

extern crate libc;
extern crate x86;

#[start]
fn start(_argc: isize, _argv: *const *const u8) -> isize {
    0
}