mpi 0.5.0

Message Passing Interface bindings for Rust
1
2
3
4
5
6
7
8
9
10
11
12
mod functions_and_types;
pub use self::functions_and_types::*;

#[cfg(extern_statics_are_unsafe)]
macro_rules! unsafe_extern_static {
    ( $x:expr ) => { unsafe { $x } }
}

#[cfg(not(extern_statics_are_unsafe))]
macro_rules! unsafe_extern_static {
    ( $x:expr ) => { $x }
}