free abstract method

void free(
  1. int pointer
)

Provides access to the free function in WebAssembly.

Frees the memory region at pointer that was previously allocated with malloc.

Implementation

void free(int pointer);