aboutsummaryrefslogtreecommitdiff
path: root/std/heap.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-12-23 22:08:53 -0500
committerAndrew Kelley <superjoe30@gmail.com>2017-12-23 22:15:48 -0500
commit4183c6f1a52959ab5eef540c8eec1758079554eb (patch)
treecbdecf12598c72f3d66d7fa5618d8a9c6338fa53 /std/heap.zig
parent9dae796fe3bd08c4e636f09d1849f6ce2879a50b (diff)
downloadzig-4183c6f1a52959ab5eef540c8eec1758079554eb.tar.gz
zig-4183c6f1a52959ab5eef540c8eec1758079554eb.zip
move std/debug.zig to a subdirectory
self hosted compiler parser tests do some fuzz testing
Diffstat (limited to 'std/heap.zig')
-rw-r--r--std/heap.zig9
1 files changed, 5 insertions, 4 deletions
diff --git a/std/heap.zig b/std/heap.zig
index ec447c1aa8..6a78692ec6 100644
--- a/std/heap.zig
+++ b/std/heap.zig
@@ -1,10 +1,11 @@
-const debug = @import("debug.zig");
+const std = @import("index.zig");
+const debug = std.debug;
const assert = debug.assert;
-const mem = @import("mem.zig");
-const os = @import("os/index.zig");
+const mem = std.mem;
+const os = std.os;
const builtin = @import("builtin");
const Os = builtin.Os;
-const c = @import("c/index.zig");
+const c = std.c;
const Allocator = mem.Allocator;