c7d499d4f2
I didn't think it'd be this useful first, but thank god for `cargo fix --edition`!
7 lines
181 B
Rust
7 lines
181 B
Rust
use crate::platform::types::*;
|
|
|
|
pub const PROT_READ: c_int = 0x0001;
|
|
pub const PROT_WRITE: c_int = 0x0002;
|
|
pub const PROT_EXEC: c_int = 0x0004;
|
|
pub const PROT_NONE: c_int = 0x0000;
|