mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-09 05:06:17 +00:00
19 lines
332 B
C
19 lines
332 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
extern void
|
|
shared_heap_free(void *ptr);
|
|
|
|
void
|
|
print_buf(char *buf)
|
|
{
|
|
printf("wasm app2's wasm func received buf: %s\n\n", buf);
|
|
shared_heap_free(buf);
|
|
}
|