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 863fb88 commit 11b1214Copy full SHA for 11b1214
src/unix/mod.rs
@@ -328,6 +328,10 @@ extern {
328
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
329
link_name = "fdopen$UNIX2003")]
330
pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE;
331
+
332
+ #[cfg(not(any(target_os = "macos", target_os = "ios")))]
333
+ pub fn fdopendir(fd: ::c_int) -> *mut ::DIR;
334
335
pub fn fileno(stream: *mut ::FILE) -> ::c_int;
336
337
0 commit comments