brintos

brintos / llvm-project-archived public Read only

0
0
Text · 748 B · e1938d1 Raw
25 lines · cpp
1 2//===-- Implementation of dlinfo ------------------------------------------===//3//4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9 10#include "dlinfo.h"11 12#include "src/__support/common.h"13#include "src/__support/macros/config.h"14 15namespace LIBC_NAMESPACE_DECL {16 17// TODO: https://github.com/llvm/llvm-project/issues/14991118LLVM_LIBC_FUNCTION(int, dlinfo,19                   (void *__restrict handle, int request,20                    void *__restrict info)) {21  return -1;22}23 24} // namespace LIBC_NAMESPACE_DECL25