v2 / vlib / builtin / wasm_bare / memory_management.v
5 lines · 4 sloc · 174 bytes · c8b0f51c13f472f5ea617ffaeba580297f16a81f
Raw
1// malloc/free implementation for freestanding webassembly target. We just use walloc at the moment
2module builtin
3
4#flag -I @VEXEROOT/thirdparty/walloc/
5#include "walloc.c"
6