aboutsummaryrefslogtreecommitdiff
path: root/src/ldso/dladdr.c
blob: 3b5cfb233e36faed18715857a3944692c9b7facd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#define _GNU_SOURCE
#include <dlfcn.h>

static int stub_dladdr(const void *addr, Dl_info *info)
{
	return 0;
}

weak_alias(stub_dladdr, dladdr);


#ifdef TEST
int
main(void) {
	return 0;
}
#endif