summaryrefslogtreecommitdiff
path: root/pc/dlfcn.h
blob: 64ef4bc5ac90df1fdd37621fb9950d38bebbd82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* dlfcn.h replacement for MS-Windows build.  */
#ifndef DLFCN_H
#define DLFCN_H

#define RTLD_LAZY 1

extern void *dlopen (const char *, int);
extern int   dlclose (void *);
extern void *dlsym (void *, const char *);
extern char *dlerror (void);

#endif	/* DLFCN_H */