diff --git a/Cargo.toml b/Cargo.toml index 6d6dd39..dd9dc48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sandbox-ipc" -version = "0.4.0" +version = "0.4.1" description = "An IPC implementation with an eye toward enabling privilege separation." repository = "https://github.com/JohnColanduoni/sandbox-ipc" diff --git a/src/unix/sharedmem.rs b/src/unix/sharedmem.rs index 616f42b..2ed0b32 100644 --- a/src/unix/sharedmem.rs +++ b/src/unix/sharedmem.rs @@ -185,7 +185,7 @@ lazy_static! { }; } -#[link = "c"] +#[link(name ="c")] extern "C" { fn getpagesize() -> c_int; }