rustld 0.1.55

A modern ELF loader (static & dynamic linker + compatible glibc & musl) written in Rust
Documentation
1
2
3
pub fn round_up_to_boundary(address: usize, boundary: usize) -> usize {
    boundary * address.div_ceil(boundary)
}