aboutsummaryrefslogtreecommitdiff
path: root/src/lib/std.rc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/std.rc')
-rw-r--r--src/lib/std.rc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/std.rc b/src/lib/std.rc
index 8c956691..ea8e50eb 100644
--- a/src/lib/std.rc
+++ b/src/lib/std.rc
@@ -7,6 +7,7 @@ meta (name = "std",
// Built-in types support modules.
mod _int;
+mod _uint;
mod _u8;
mod _vec;
mod _str;
@@ -15,6 +16,7 @@ mod _str;
mod _io;
mod sys;
+mod _task;
// Utility modules.
@@ -25,8 +27,9 @@ mod util;
auth _io = unsafe;
auth _str = unsafe;
auth _vec = unsafe;
+auth _task = unsafe;
-auth _int.next_power_of_two = unsafe;
+auth _uint.next_power_of_two = unsafe;
auth map.mk_hashmap = unsafe;
auth rand.mk_rng = unsafe;