fix putenv and setenv for windows (#140)

This commit is contained in:
Mackenzie Clark
2019-02-06 18:57:11 -08:00
committed by GitHub
parent 2fbd38bd5d
commit 83df3ad35f
4 changed files with 243 additions and 4 deletions

11
lib/emscripten/src/env/mod.rs vendored Normal file
View 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::*;