mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-23 10:01:24 +00:00
22 lines
333 B
C
22 lines
333 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#ifndef _WASM_DLFCN_H
|
|
#define _WASM_DLFCN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *
|
|
wasm_dlsym(void *handle, const char *symbol);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* end of _WASM_DLFCN_H */
|
|
|