summaryrefslogtreecommitdiffstats
path: root/funtools/filter/dl.h
blob: e3f1b09ef75cb970d3f74f63803dcc5bc2e5e791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef	__dl_h
#define	__dl_h

#if HAVE_CONFIG_H
#include "conf.h"
#endif

#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif

#include "prsetup.h"

_PRbeg

void *DLOpen _PRx((char *name));
void *DLSym _PRx((void *dl, char *name));
int DLClose _PRx((void *dl));


_PRend

#endif