mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-21 20:51:32 +00:00
fix putenv and setenv for windows (#140)
This commit is contained in:
11
lib/emscripten/src/env/mod.rs
vendored
Normal file
11
lib/emscripten/src/env/mod.rs
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
#[cfg(unix)]
|
||||
mod unix;
|
||||
|
||||
#[cfg(windows)]
|
||||
mod windows;
|
||||
|
||||
#[cfg(unix)]
|
||||
pub use self::unix::*;
|
||||
|
||||
#[cfg(windows)]
|
||||
pub use self::windows::*;
|
Reference in New Issue
Block a user