iconv: add euro symbol to GBK as single byte 0x80
[musl.git] / src / ldso / dlopen.c
blob69372a220bb1ceddd3e285d9a37c1c56d97f6430
1 #include <dlfcn.h>
2 #include "dynlink.h"
4 static void *stub_dlopen(const char *file, int mode)
6 __dl_seterr("Dynamic loading not supported");
7 return 0;
10 weak_alias(stub_dlopen, dlopen);