aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda/src/impl/os_unix.rs
blob: 90b7011ec7cdddf020e589ce9dce69d4fe0ffccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::ffi::c_void;

pub unsafe fn heap_create() -> *mut c_void {
    usize::MAX as *mut _
}

pub unsafe fn heap_alloc(_heap: *mut c_void, _bytes: usize) -> *mut c_void {
    todo!()
}

pub unsafe fn heap_free(_heap: *mut c_void, _alloc: *mut c_void) {
    todo!()
}