Add definitions of RTLD_LAZY and RTLD_NOW.

This commit is contained in:
John Polstra 1997-01-12 18:37:46 +00:00
parent b82b4e07ee
commit 8a8c5a99ee
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=21616

View File

@ -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 *));