diff options
Diffstat (limited to 'src/libstd/sys/unsupported/alloc.rs')
| -rw-r--r-- | src/libstd/sys/unsupported/alloc.rs | 22 | 
1 files changed, 0 insertions, 22 deletions
diff --git a/src/libstd/sys/unsupported/alloc.rs b/src/libstd/sys/unsupported/alloc.rs deleted file mode 100644 index 8d5d0a2f5cc..00000000000 --- a/src/libstd/sys/unsupported/alloc.rs +++ /dev/null @@ -1,22 +0,0 @@ -use crate::alloc::{GlobalAlloc, Layout, System}; - -#[stable(feature = "alloc_system_type", since = "1.28.0")] -unsafe impl GlobalAlloc for System { - #[inline] - unsafe fn alloc(&self, _layout: Layout) -> *mut u8 { - 0 as *mut u8 - } - - #[inline] - unsafe fn alloc_zeroed(&self, _layout: Layout) -> *mut u8 { - 0 as *mut u8 - } - - #[inline] - unsafe fn dealloc(&self, _ptr: *mut u8, _layout: Layout) {} - - #[inline] - unsafe fn realloc(&self, _ptr: *mut u8, _layout: Layout, _new_size: usize) -> *mut u8 { - 0 as *mut u8 - } -}  | 
