[MemProf] Templatize CallStackRadixTreeBuilder (NFC) (#117014)
[llvm-project.git] / libc / src / dlfcn / dlopen.cpp
blob9e8d58e347635d795365e91d7a832edbde9f4e94
1 //===-- Implementation of dlopen -----------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "dlopen.h"
11 #include "src/__support/common.h"
12 #include "src/__support/macros/config.h"
14 namespace LIBC_NAMESPACE_DECL {
16 // TODO(@izaakschroeder): https://github.com/llvm/llvm-project/issues/97919
17 LLVM_LIBC_FUNCTION(void *, dlopen, (const char *, int)) { return nullptr; }
19 } // namespace LIBC_NAMESPACE_DECL