diff --git a/third_party/musl/ndk_musl_include/dlfcn.h b/third_party/musl/ndk_musl_include/dlfcn.h index 998f0f196..985529a0d 100644 --- a/third_party/musl/ndk_musl_include/dlfcn.h +++ b/third_party/musl/ndk_musl_include/dlfcn.h @@ -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