summaryrefslogtreecommitdiff
path: root/src/dlfcn/dlclose.c
blob: 9189caecda0b6677f303742e601849d14911d99d (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"

int dlclose(void *handle)
{
	struct dlhandle *h = handle;
	munmap(h->base, h->size);
	close(h->fd);
}

/*
XOPEN(500)
*/


#endif