23
23
all( target_arch = "wasm32" , not( target_os = "emscripten" ) ) ,
24
24
feature( integer_atomics, stdsimd)
25
25
) ]
26
- #![ cfg_attr( any( unix, target_os = "cloudabi" , target_os = " redox") , feature( libc) ) ]
26
+ #![ cfg_attr( any( unix, target_os = "redox" ) , feature( libc) ) ]
27
27
// The minimum alignment guaranteed by the architecture. This value is used to
28
28
// add fast paths for low alignment values.
29
29
#[ cfg( all( any( target_arch = "x86" ,
@@ -69,7 +69,7 @@ const MIN_ALIGN: usize = 16;
69
69
/// independently of the standard library’s global allocator.
70
70
#[ stable( feature = "alloc_system_type" , since = "1.28.0" ) ]
71
71
pub struct System ;
72
- #[ cfg( any( windows, unix, target_os = "cloudabi" , target_os = " redox") ) ]
72
+ #[ cfg( any( windows, unix, target_os = "redox" ) ) ]
73
73
mod realloc_fallback {
74
74
use core:: alloc:: { GlobalAlloc , Layout } ;
75
75
use core:: cmp;
@@ -89,7 +89,7 @@ mod realloc_fallback {
89
89
}
90
90
}
91
91
}
92
- #[ cfg( any( unix, target_os = "cloudabi" , target_os = " redox") ) ]
92
+ #[ cfg( any( unix, target_os = "redox" ) ) ]
93
93
mod platform {
94
94
extern crate libc;
95
95
use core:: ptr;
0 commit comments