2011-11-18 18:29:01 -06:00
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import sys;
|
2011-10-21 14:14:01 -05:00
|
|
|
|
|
|
|
// The purpose of this test is to check that we can
|
2011-11-09 18:04:07 -06:00
|
|
|
// successfully (and safely) invoke external, cdecl
|
2011-10-21 14:14:01 -05:00
|
|
|
// functions from outside the crate.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = sys::rustrt::last_os_error();
|
2011-11-18 18:29:01 -06:00
|
|
|
}
|