blob: 69372a220bb1ceddd3e285d9a37c1c56d97f6430 [file] [log] [blame]
#include <dlfcn.h>
#include "dynlink.h"
static void *stub_dlopen(const char *file, int mode)
{
__dl_seterr("Dynamic loading not supported");
return 0;
}
weak_alias(stub_dlopen, dlopen);