update third_party/musl/ndk_musl_include/dlfcn.h.

Signed-off-by: lubinglun <lubinglun@huawei.com>
This commit is contained in:
lubinglun 2024-04-24 01:54:36 +00:00 committed by Gitee
parent 3649827d61
commit aa8722d34b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -29,14 +29,14 @@ void *dlsym(void *__restrict, const char *__restrict);
/**
* @brief Obtain address of a symbol in a shared object or executable
*
* @param (void *__restrict): the handle to the dynamic link library
* @param (const char *restrict): the name of the symbol to be looked up
* @param (const char *restrict): the specific version of the symbol to be looked up
* @param (void *__restrict) the handle to the dynamic link library
* @param (const char *restrict) the name of the symbol to be looked up
* @param (const char *restrict) the specific version of the symbol to be looked up
*
* @return On success, return the address associated with symbol. On failure, return NULL
* @since 12
*/
void *dlvsym(void *__restrict, const char *__restrict, const char *__restrict);
void *dlvsym(void *__restrict, const char *__restrict, const char *__restrict);
/* namespace apis */
#define NS_NAME_MAX 255