aboutsummaryrefslogtreecommitdiff
path: root/src/lib/sys.rs
blob: 3d858413375aecef8fac0101aa862a413acd715f (plain) (blame)
1
2
3
4
5
6
7
8
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();
}