Skip to content

Commit b781a6b

Browse files
committed
Use page_size_min instead of pageSize
1 parent a841659 commit b781a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub fn new() !*TCCState {
3232
return tcc_new() orelse error.TCCNewError;
3333
}
3434

35-
const page_size = std.heap.pageSize();
35+
const page_size = std.heap.page_size_min;
3636

3737
pub const DynMem = struct {
3838
allocator: std.mem.Allocator,

0 commit comments

Comments
 (0)