Skip to content

Commit c6bb76a

Browse files
committed
revert changes
1 parent 6406f18 commit c6bb76a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,10 @@ cfg_if! {
144144
pub type intptr_t = isize;
145145
pub type uintptr_t = usize;
146146
pub type ssize_t = isize;
147+
147148
pub enum FILE {}
148149
pub enum fpos_t {} // TODO: fill this out with a struct
150+
149151
extern {
150152
pub fn isalnum(c: c_int) -> c_int;
151153
pub fn isalpha(c: c_int) -> c_int;
@@ -291,7 +293,7 @@ cfg_if! {
291293
mod fuchsia;
292294
pub use fuchsia::*;
293295
} else if #[cfg(unix)] {
294-
pub mod unix;
296+
mod unix;
295297
pub use unix::*;
296298
} else {
297299
// Unknown target_family

0 commit comments

Comments
 (0)