diff options
| author | Joshua Wise <joshua@joshuawise.com> | 2011-11-23 05:15:04 -0500 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2011-11-28 10:41:45 -0800 |
| commit | c2eb084b4c273682b06fcaf285399ec9bf6fd0cb (patch) | |
| tree | 465149197b7152119fc09556d9866aa7c1ca1c69 /src/lib/std.rc | |
| parent | 9aa6e5750ef31d5ccc2c7edd184aaa3f7372ea00 (diff) | |
| download | rust-c2eb084b4c273682b06fcaf285399ec9bf6fd0cb.tar.gz rust-c2eb084b4c273682b06fcaf285399ec9bf6fd0cb.zip | |
Add c_vec library to std.
Diffstat (limited to 'src/lib/std.rc')
| -rw-r--r-- | src/lib/std.rc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/std.rc b/src/lib/std.rc index 342e3fe394d..555828f79c3 100644 --- a/src/lib/std.rc +++ b/src/lib/std.rc @@ -10,7 +10,7 @@ export box, char, float, int, str, ptr; export uint, u8, u32, u64, vec, bool; export comm, fs, io, net, run, sys, task; -export ctypes, either, option, result, four, tri, util; +export c_vec, ctypes, either, option, result, four, tri, util; export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind; export rope; export math, math_f32, math_f64; @@ -50,6 +50,7 @@ mod task; // Utility modules +mod c_vec; mod ctypes; mod cmath; /* unexported */ mod either; |
