Skip to content

Commit a1ab0cd

Browse files
committed
Sub-uses from libc should be pub.
1 parent 365f174 commit a1ab0cd

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

src/libcore/libc.rs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -58,30 +58,30 @@ pub use types::os::arch::posix08::*;
5858
pub use types::os::arch::bsd44::*;
5959
pub use types::os::arch::extra::*;
6060

61-
use consts::os::c95::*;
62-
use consts::os::c99::*;
63-
use consts::os::posix88::*;
64-
use consts::os::posix01::*;
65-
use consts::os::posix08::*;
66-
use consts::os::bsd44::*;
67-
use consts::os::extra::*;
68-
69-
use funcs::c95::ctype::*;
70-
use funcs::c95::stdio::*;
71-
use funcs::c95::stdlib::*;
72-
use funcs::c95::string::*;
73-
74-
use funcs::posix88::stat::*;
75-
use funcs::posix88::stdio::*;
76-
use funcs::posix88::fcntl::*;
77-
use funcs::posix88::dirent::*;
78-
use funcs::posix88::unistd::*;
79-
80-
use funcs::posix01::unistd::*;
81-
use funcs::posix08::unistd::*;
82-
83-
use funcs::bsd44::*;
84-
use funcs::extra::*;
61+
pub use consts::os::c95::*;
62+
pub use consts::os::c99::*;
63+
pub use consts::os::posix88::*;
64+
pub use consts::os::posix01::*;
65+
pub use consts::os::posix08::*;
66+
pub use consts::os::bsd44::*;
67+
pub use consts::os::extra::*;
68+
69+
pub use funcs::c95::ctype::*;
70+
pub use funcs::c95::stdio::*;
71+
pub use funcs::c95::stdlib::*;
72+
pub use funcs::c95::string::*;
73+
74+
pub use funcs::posix88::stat::*;
75+
pub use funcs::posix88::stdio::*;
76+
pub use funcs::posix88::fcntl::*;
77+
pub use funcs::posix88::dirent::*;
78+
pub use funcs::posix88::unistd::*;
79+
80+
pub use funcs::posix01::unistd::*;
81+
pub use funcs::posix08::unistd::*;
82+
83+
pub use funcs::bsd44::*;
84+
pub use funcs::extra::*;
8585

8686
// Explicit export lists for the intersection (provided here) mean that
8787
// you can write more-platform-agnostic code if you stick to just these

0 commit comments

Comments
 (0)