Remove unused code, cleanup

This commit is contained in:
Brandon Fish
2019-01-27 19:06:03 -06:00
parent 0bb45a69eb
commit 23492a4c53
3 changed files with 10 additions and 128 deletions

View File

@ -99,17 +99,17 @@ pub extern "C" fn _difftime(t0: u32, t1: u32) -> f64 {
(t0 - t1) as _
}
pub extern "C" fn _gmtime_r(one: i32, two: i32, ctx: &mut Ctx) -> i32 {
pub extern "C" fn _gmtime_r(_one: i32, _two: i32, _ctx: &mut Ctx) -> i32 {
debug!("emscripten::_gmtime_r");
-1
}
pub extern "C" fn _mktime(one: i32, ctx: &mut Ctx) -> i32 {
pub extern "C" fn _mktime(_one: i32, _ctx: &mut Ctx) -> i32 {
debug!("emscripten::_mktime");
-1
}
pub extern "C" fn _gmtime(one: i32, ctx: &mut Ctx) -> i32 {
pub extern "C" fn _gmtime(_one: i32, _ctx: &mut Ctx) -> i32 {
debug!("emscripten::_gmtime");
-1
}