浏览代码

fix harder

Paul Sajna 7 年之前
父节点
当前提交
14957bb8dc
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/platform/src/redox/mod.rs

+ 1 - 0
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;