dlopen.c 190 字节
Newer Older
1
#include <dlfcn.h>
2
#include "dynlink.h"
3 4 5 6 7 8 9 10

static void *stub_dlopen(const char *file, int mode)
{
	__dl_seterr("Dynamic loading not supported");
	return 0;
}

weak_alias(stub_dlopen, dlopen);