[libc] Add RTLD_NEXT + RTLD_DEFAULT (#149909)

Related to #97920, this patch adds `dlsym` macros `RTLD_NEXT` AND
`RTLD_DEFAULT` to dlfcn.h.
This commit is contained in:
Caslyn Tonelli
2025-08-05 10:51:28 -07:00
committed by GitHub
parent f03345a07a
commit b5bf100046

View File

@@ -29,6 +29,14 @@ macros:
standards:
- gnu
macro_value: "0x01000"
- macro_name: RTLD_NEXT
standards:
- gnu
macro_value: "((void *) -1l)"
- macro_name: RTLD_DEFAULT
standards:
- gnu
macro_value: "((void *) 0)"
functions:
- name: dlclose
standards: