9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
19 lines
270 B
C
19 lines
270 B
C
#include <dlfcn.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
|
|
#ifdef USE_HOST_LIBC
|
|
#define LIBFOO "libnative-foo.so"
|
|
#else
|
|
#define LIBFOO "libfoo.so"
|
|
#endif
|
|
|
|
int main() {
|
|
void *foo = dlopen(LIBFOO, RTLD_NOW);
|
|
assert(foo);
|
|
dlclose(foo);
|
|
|
|
return 0;
|
|
}
|