summaryrefslogtreecommitdiff
path: root/src/dlfcn/dlsym.c
blob: f4afe83eab1280b8f757916dc3ec12c57d2f361a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#if 0

#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)
*/


#endif