about summary refs log tree commit diff
path: root/src/libcore/core.rc
blob: e35b2c0397e7a388aff9fceabb58b39d36761b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#[link(name = "core",
       vers = "0.1",
       uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
       url = "http://rust-lang.org/src/core")];

#[comment = "The Rust core library"];
#[license = "BSD"];
#[crate_type = "lib"];

export box, char, float, f32, f64, int, str, ptr;
export uint, u8, u32, u64, vec, bool;
export either, option, result;
export ctypes, mtypes, sys, unsafe, comm, task;
export extfmt;

// Built-in-type support modules

mod box;
mod char;
mod float;
mod f32;
mod f64;
mod int;
mod str;
mod ptr;
mod uint;
mod u8;
mod u32;
mod u64;
mod vec;
mod bool;


// Ubiquitous-utility-type modules

mod either;
mod option;
mod result;


// Runtime and language-primitive support

mod ctypes;
mod mtypes;
mod cmath;
mod sys;
mod unsafe;
mod comm;
mod task;

// Compiler support modules

mod extfmt;


// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End: