aboutsummaryrefslogtreecommitdiff
path: root/lib/std/heap.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-03-10 18:44:30 -0400
committerAndrew Kelley <andrew@ziglang.org>2020-03-10 18:44:30 -0400
commit18f1fef1426cb0405c733890b2e1d8d48627e4fe (patch)
treef019a3291b74a42206691a75e2832802bb50abc7 /lib/std/heap.zig
parentb6fbd524f122449e6e2bb4d73ce3f59b01286f50 (diff)
downloadzig-18f1fef1426cb0405c733890b2e1d8d48627e4fe.tar.gz
zig-18f1fef1426cb0405c733890b2e1d8d48627e4fe.zip
update standard library to new I/O streams API
Diffstat (limited to 'lib/std/heap.zig')
-rw-r--r--lib/std/heap.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/heap.zig b/lib/std/heap.zig
index 65809e97b4..8c79249d4b 100644
--- a/lib/std/heap.zig
+++ b/lib/std/heap.zig
@@ -10,6 +10,7 @@ const c = std.c;
const maxInt = std.math.maxInt;
pub const LoggingAllocator = @import("heap/logging_allocator.zig").LoggingAllocator;
+pub const loggingAllocator = @import("heap/logging_allocator.zig").loggingAllocator;
const Allocator = mem.Allocator;