aboutsummaryrefslogtreecommitdiff
path: root/libc/src/dlfcn/dlinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/dlfcn/dlinfo.cpp')
-rw-r--r--libc/src/dlfcn/dlinfo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/src/dlfcn/dlinfo.cpp b/libc/src/dlfcn/dlinfo.cpp
index d78cade..e1938d1 100644
--- a/libc/src/dlfcn/dlinfo.cpp
+++ b/libc/src/dlfcn/dlinfo.cpp
@@ -16,7 +16,8 @@ namespace LIBC_NAMESPACE_DECL {
// TODO: https://github.com/llvm/llvm-project/issues/149911
LLVM_LIBC_FUNCTION(int, dlinfo,
- (void *restrict handle, int request, void *restrict info)) {
+ (void *__restrict handle, int request,
+ void *__restrict info)) {
return -1;
}