We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af99b4b commit 35e01e0Copy full SHA for 35e01e0
src/lib/posix_fs.rs
@@ -1,6 +1,6 @@
1
2
native "c-stack-cdecl" mod rustrt {
3
- fn rust_list_files(&&path: str) -> [str];
+ fn rust_list_files(path: str) -> [str];
4
}
5
6
fn list_dir(path: str) -> [str] {
src/lib/win32_fs.rs
@@ -1,8 +1,8 @@
- fn rust_file_is_dir(&&path: str) -> int;
+ fn rust_file_is_dir(path: str) -> int;
7
8
0 commit comments