mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
remove debug print
This commit is contained in:
parent
52d339463a
commit
2aabdaa9c8
1 changed files with 1 additions and 4 deletions
|
@ -4,10 +4,7 @@ use core::ffi::c_void;
|
|||
/// The Roc application needs this.
|
||||
#[no_mangle]
|
||||
pub unsafe fn roc_alloc(size: usize, _alignment: u32) -> *mut c_void {
|
||||
let ptr = libc::malloc(size);
|
||||
println!("allocated: {:x?}", ptr);
|
||||
|
||||
ptr
|
||||
libc::malloc(size)
|
||||
}
|
||||
|
||||
/// # Safety
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue