mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add definitions of RTLD_LAZY and RTLD_NOW.
This commit is contained in:
parent
b82b4e07ee
commit
8a8c5a99ee
1 changed files with 6 additions and 0 deletions
|
|
@ -37,6 +37,12 @@
|
|||
#define _DLFCN_H_
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
/*
|
||||
* Modes for dlopen().
|
||||
*/
|
||||
#define RTLD_LAZY 1 /* Bind function calls lazily */
|
||||
#define RTLD_NOW 2 /* Bind function calls immediately */
|
||||
|
||||
__BEGIN_DECLS
|
||||
void *dlopen __P((char *, int));
|
||||
void *dlsym __P((void *, char *));
|
||||
|
|
|
|||
Loading…
Reference in a new issue