summaryrefslogtreecommitdiff
path: root/src/dlfcn/dlsym.c
blob: 1648fdbc75541d06e260dda2dde1233708d93456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <dlfcn.h>
#include "_dlfcn.h"

void *dlsym(void *restrict handle, const char *restrict name)
{
	struct dlhandle *h = handle;
	(void)name;
	return h;
}

/*
XOPEN(500)
*/