diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-08-20 17:39:23 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-08-20 17:39:23 +0000 |
commit | b2d07fa913cc2202ebc0ee6aaceeb47c423bf48a (patch) | |
tree | 07b6b99b7ad6a959fff89a450840a96c553ee33f /include/dlfcn.h | |
parent | 2b5bbba62ac2d965f832d25aa5fe36eccf488a98 (diff) |
Add #define for RTLD_NOLOAD missed in last ld.so commit.
Diffstat (limited to 'include/dlfcn.h')
-rw-r--r-- | include/dlfcn.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h index 4cee44748ff..5423bb29794 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dlfcn.h,v 1.15 2021/06/02 07:29:03 semarie Exp $ */ +/* $OpenBSD: dlfcn.h,v 1.16 2022/08/20 17:39:22 tb Exp $ */ /* $NetBSD: dlfcn.h,v 1.2 1995/06/05 19:38:00 pk Exp $ */ /* @@ -43,6 +43,7 @@ #define RTLD_LOCAL 0x000 #define RTLD_TRACE 0x200 #define RTLD_NODELETE 0x400 +#define RTLD_NOLOAD 0x800 /* * Special handle arguments for dlsym(). |