1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![no_std]


#[cfg(any(target_os = "linux", target_os = "macos"))]
extern crate libc;
#[cfg(target_os = "windows")]
extern crate winapi;


mod executable_memory;


pub use self::executable_memory::ExecutableMemory;