Idris2/support/c/idris_memory.h
Stiopa Koltsov d676ea6ab4 Expose malloc and free from System.FFI
* Move `malloc`/`free` from `Network.FFI` to `System.FFI`
* Might be useful by other code
2021-07-13 10:24:26 +01:00

5 lines
74 B
C

#pragma once
void* idris2_malloc(int size);
void idris2_free(void* ptr);