From 14957bb8dccf45f74f3d22a8394495c39937cdaf Mon Sep 17 00:00:00 2001 From: Paul Sajna Date: Mon, 26 Mar 2018 21:14:38 -0700 Subject: [PATCH] fix harder --- src/platform/src/redox/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/platform/src/redox/mod.rs b/src/platform/src/redox/mod.rs index 03c4b5cf5f..437a957823 100644 --- a/src/platform/src/redox/mod.rs +++ b/src/platform/src/redox/mod.rs @@ -200,6 +200,7 @@ pub fn lstat(path: *const c_char, buf: *mut stat) -> c_int { res } } +} pub fn mkdir(path: *const c_char, mode: mode_t) -> c_int { let flags = O_CREAT | O_EXCL | O_CLOEXEC | O_DIRECTORY | mode as usize & 0o777;