blob: de76bf28dd4d22180f49caca60fa365313e09c1c (
plain)
1
2
3
4
5
6
7
|
//! Memory Errors
pub const allocation = @import("allocation.zig");
pub const mapping = @import("mapping.zig");
pub const AllocationError = allocation.AllocationError;
pub const MappingError = mapping.MappingError;
|