Removing some unused imports, cleanup

This commit is contained in:
Brandon Fish
2019-01-18 18:36:28 -06:00
parent 62d06043b2
commit 7fc892be07
7 changed files with 8 additions and 19 deletions

View File

@ -3,10 +3,8 @@ use wasmer_runtime::{module::Module, Instance};
use super::env;
use libc::stat;
use std::ffi::CStr;
use std::mem::size_of;
use std::os::raw::c_char;
use std::slice;
use std::sync::Arc;
/// We check if a provided module is an Emscripten generated one
pub fn is_emscripten_module(module: &Module) -> bool {
for (_, import_name) in &module.0.imported_functions {