[libc-commits] [libc] [libc] Stub out message catalog functions from <nl_types.h> (PR #164360)

via libc-commits libc-commits at lists.llvm.org
Tue Oct 21 07:45:59 PDT 2025


================
@@ -0,0 +1,25 @@
+//===-- Implementation of catopen -----------------------------------------===//
+//
+// 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 "src/nl_types/catopen.h"
+#include "include/llvm-libc-types/nl_catd.h"
+#include "src/__support/common.h"
+#include "src/__support/libc_errno.h"
+#include "src/__support/macros/config.h"
+
+namespace LIBC_NAMESPACE_DECL {
+
+LLVM_LIBC_FUNCTION(nl_catd, catopen,
+                   ([[maybe_unused]] const char *name,
+                    [[maybe_unused]] int flag)) {
+  // Message catalogs are not implemented. Return error regardless of input.
----------------
lntue wrote:

ditto

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


More information about the libc-commits mailing list