rust/src/lib/sys.rs

9 lines
157 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
native "rust" mod rustrt {
fn last_os_error() -> str;
fn size_of[T]() -> uint;
fn align_of[T]() -> uint;
fn refcount[T](@T t) -> uint;
fn gc();
2010-06-23 23:03:09 -05:00
}