move tlsdesc and internal dl function declarations to dynlink.h
[musl] / src / ldso / dlopen.c
1 #include <dlfcn.h>
2 #include "dynlink.h"
3 #include "libc.h"
4
5 static void *stub_dlopen(const char *file, int mode)
6 {
7         __dl_seterr("Dynamic loading not supported");
8         return 0;
9 }
10
11 weak_alias(stub_dlopen, dlopen);