diff options
Diffstat (limited to 'src/unload.c')
| -rw-r--r-- | src/unload.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/unload.c b/src/unload.c new file mode 100644 index 0000000..5304701 --- /dev/null +++ b/src/unload.c @@ -0,0 +1,13 @@ +#include <wasmfs.h> +#include <wasm_types.h> +#include <errno.h> +#include <stdlib.h> +#include <string.h> + +void wasmfs_unload(struct wasmfs *const w) +{ + if (w) + free(w->path); + + free(w); +} |
