From 16abe619e6c55e3bd44077d5d798b60c527f793a Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 23 Jun 2024 19:45:58 +0200 Subject: [PATCH] fixup! Implement dladdr(3). --- libc/include/dlfcn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/dlfcn.h b/libc/include/dlfcn.h index 42d2ba38..b932fe6a 100644 --- a/libc/include/dlfcn.h +++ b/libc/include/dlfcn.h @@ -42,7 +42,7 @@ extern "C" { #endif #if __USE_SORTIX || 202405L <= __USE_POSIX -int dladdr(const void* restrict, Dl_info_t* restrict); +int dladdr(const void* restrict, Dl_info_t* __restrict); #endif int dlclose(void*); char* dlerror(void);