[libc-commits] [libc] [libc] Add `link.h` and `elf.h` placeholder (PR #97504)

Petr Hosek via libc-commits libc-commits at lists.llvm.org
Thu Jul 18 22:26:11 PDT 2024


================
@@ -0,0 +1,18 @@
+//===-- Implementation of dladdr -----------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "dladdr.h"
+
+#include "src/__support/common.h"
+
+namespace LIBC_NAMESPACE {
+
+// TODO(@izaakschroeder): https://github.com/llvm/llvm-project/issues/97929
----------------
petrhosek wrote:

The format I've seen more commonly used in LLVM is `TODO(#97929): More details...`.

https://github.com/llvm/llvm-project/pull/97504


More information about the libc-commits mailing list