mirror of
https://github.com/mirror/make.git
synced 2025-01-10 12:20:18 +08:00
14 lines
284 B
C
14 lines
284 B
C
|
/* dlfcn.h replacement for MS-Windows build. */
|
||
|
#ifndef DLFCN_H
|
||
|
#define DLFCN_H
|
||
|
|
||
|
#define RTLD_LAZY 1
|
||
|
#define RTLD_NOW 2
|
||
|
#define RTLD_GLOBAL 4
|
||
|
|
||
|
extern void *dlopen (const char *, int);
|
||
|
extern void *dlsym (void *, const char *);
|
||
|
extern char *dlerror (void);
|
||
|
|
||
|
#endif /* DLFCN_H */
|