#include #include "dynlink.h" #include "libc.h" static void *stub_dlopen(const char *file, int mode) { __dl_seterr("Dynamic loading not supported"); return 0; } weak_alias(stub_dlopen, dlopen);