We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abd8433 commit 7ed1f99Copy full SHA for 7ed1f99
src/zemscripten.zig
@@ -81,13 +81,13 @@ pub fn getElementCssSize(
81
}
82
extern fn emscripten_get_element_css_size([*:0]const u8, *f64, *f64) c_int;
83
84
-// EmmalocAllocator allocator
+// EmmallocAllocator allocator
85
// use with linker flag -sMALLOC=emmalloc
86
// for details see docs: https://github.com/emscripten-core/emscripten/blob/main/system/lib/emmalloc.c
87
extern fn emmalloc_memalign(u32, u32) ?*anyopaque;
88
extern fn emmalloc_realloc_try(?*anyopaque, u32) ?*anyopaque;
89
extern fn emmalloc_free(?*anyopaque) void;
90
-pub const EmmalocAllocator = struct {
+pub const EmmallocAllocator = struct {
91
const Self = @This();
92
dummy: u32 = undefined,
93
0 commit comments