summaryrefslogtreecommitdiff
path: root/src/dlfcn/_dlfcn.h
blob: fd5e30d0aac69bb041d4027459f16bb245006e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ___DLFCN_H__
#define ___DLFCN_H__

#include <stddef.h>

struct dlhandle {
	void *base;
	size_t size;
	int fd;
};

#endif