]> git.lizzy.rs Git - rust.git/blob - library/std/src/sys/unsupported/alloc.rs
Auto merge of #91962 - matthiaskrgr:rollup-2g082jw, r=matthiaskrgr
[rust.git] / library / std / src / sys / unsupported / alloc.rs
1 use crate::alloc::{GlobalAlloc, Layout, System};
2
3 #[stable(feature = "alloc_system_type", since = "1.28.0")]
4 unsafe impl GlobalAlloc for System {
5     #[inline]
6     unsafe fn alloc(&self, _layout: Layout) -> *mut u8 {
7         0 as *mut u8
8     }
9
10     #[inline]
11     unsafe fn alloc_zeroed(&self, _layout: Layout) -> *mut u8 {
12         0 as *mut u8
13     }
14
15     #[inline]
16     unsafe fn dealloc(&self, _ptr: *mut u8, _layout: Layout) {}
17
18     #[inline]
19     unsafe fn realloc(&self, _ptr: *mut u8, _layout: Layout, _new_size: usize) -> *mut u8 {
20         0 as *mut u8
21     }
22 }