1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-04-11 11:56:04 +00:00

4 lines
93 B
Rust
Raw Normal View History

pub fn round_up_to_page_size(size: usize) -> usize {
(size + (4096 - 1)) & !(4096 - 1)
}