File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ pub mod os {
140
140
}
141
141
142
142
#[ cfg( target_os = "haiku" ) ]
143
- mod os {
143
+ pub mod os {
144
144
pub const FAMILY : & ' static str = "unix" ;
145
145
pub const OS : & ' static str = "haiku" ;
146
146
pub const DLL_PREFIX : & ' static str = "lib" ;
@@ -151,7 +151,7 @@ mod os {
151
151
}
152
152
153
153
#[ cfg( all( target_os = "emscripten" , target_arch = "asmjs" ) ) ]
154
- mod os {
154
+ pub mod os {
155
155
pub const FAMILY : & ' static str = "unix" ;
156
156
pub const OS : & ' static str = "emscripten" ;
157
157
pub const DLL_PREFIX : & ' static str = "lib" ;
@@ -162,7 +162,7 @@ mod os {
162
162
}
163
163
164
164
#[ cfg( all( target_os = "emscripten" , target_arch = "wasm32" ) ) ]
165
- mod os {
165
+ pub mod os {
166
166
pub const FAMILY : & ' static str = "unix" ;
167
167
pub const OS : & ' static str = "emscripten" ;
168
168
pub const DLL_PREFIX : & ' static str = "lib" ;
You can’t perform that action at this time.
0 commit comments