[llvm-branch-commits] [libc] [libc][annex_k] Add errno_t. (PR #163094)

Muhammad Bassiouni via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Oct 16 16:14:36 PDT 2025


================
@@ -0,0 +1,21 @@
+//===-- Definition of type errno_t ----------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_INCLUDE_LLVM_LIBC_TYPES_ERRNO_T_H
+#define LLVM_LIBC_INCLUDE_LLVM_LIBC_TYPES_ERRNO_T_H
+
+// LIBC_HAS_ANNEX_K is a necessary check guard here because errno_t is only
+// defined when Annex K is enabled. We use LIBC_HAS_ANNEX_K internally to
+// indicate whether Annex K is enabled or not.
----------------
bassiounix wrote:

done.

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


More information about the llvm-branch-commits mailing list