mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
Add definitions of RTLD_LAZY and RTLD_NOW.
This commit is contained in:
parent
b82b4e07ee
commit
8a8c5a99ee
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=21616
@ -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 New Issue
Block a user