File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ pub mod os {
140140}
141141
142142#[ cfg( target_os = "haiku" ) ]
143- mod os {
143+ pub mod os {
144144 pub const FAMILY : & ' static str = "unix" ;
145145 pub const OS : & ' static str = "haiku" ;
146146 pub const DLL_PREFIX : & ' static str = "lib" ;
@@ -151,7 +151,7 @@ mod os {
151151}
152152
153153#[ cfg( all( target_os = "emscripten" , target_arch = "asmjs" ) ) ]
154- mod os {
154+ pub mod os {
155155 pub const FAMILY : & ' static str = "unix" ;
156156 pub const OS : & ' static str = "emscripten" ;
157157 pub const DLL_PREFIX : & ' static str = "lib" ;
@@ -162,7 +162,7 @@ mod os {
162162}
163163
164164#[ cfg( all( target_os = "emscripten" , target_arch = "wasm32" ) ) ]
165- mod os {
165+ pub mod os {
166166 pub const FAMILY : & ' static str = "unix" ;
167167 pub const OS : & ' static str = "emscripten" ;
168168 pub const DLL_PREFIX : & ' static str = "lib" ;
You can’t perform that action at this time.
0 commit comments