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 6406f18 commit c6bb76aCopy full SHA for c6bb76a
src/lib.rs
@@ -144,8 +144,10 @@ cfg_if! {
144
pub type intptr_t = isize;
145
pub type uintptr_t = usize;
146
pub type ssize_t = isize;
147
+
148
pub enum FILE {}
149
pub enum fpos_t {} // TODO: fill this out with a struct
150
151
extern {
152
pub fn isalnum(c: c_int) -> c_int;
153
pub fn isalpha(c: c_int) -> c_int;
@@ -291,7 +293,7 @@ cfg_if! {
291
293
mod fuchsia;
292
294
pub use fuchsia::*;
295
} else if #[cfg(unix)] {
- pub mod unix;
296
+ mod unix;
297
pub use unix::*;
298
} else {
299
// Unknown target_family
0 commit comments