提交 da1fe7f5 编写于 作者: R Rich Felker

move dlclose out of dynlink.c to its own source file

上级 891e6547
#include <dlfcn.h>
__attribute__((__visibility__("hidden")))
int __dl_invalid_handle(void *);
int dlclose(void *p)
{
return __dl_invalid_handle(p);
}
......@@ -1940,11 +1940,6 @@ int __dlinfo(void *dso, int req, void *res)
return 0;
}
int dlclose(void *p)
{
return __dl_invalid_handle(p);
}
__attribute__((__visibility__("hidden")))
void __dl_vseterr(const char *, va_list);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册