[llvm-branch-commits] [libc] [libc] Annex K: strcpy_s (PR #197709)
Victor Campos via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Jul 3 06:12:38 PDT 2026
================
@@ -0,0 +1,75 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// This file contains the implementation of strcpy_s.
+///
+//===----------------------------------------------------------------------===//
+
+#define __STDC_WANT_LIB_EXT1__ 1
+#include "hdr/stdint_proxy.h"
+#undef __STDC_WANT_LIB_EXT1__
+#include "hdr/types/constraint_handler_t.h"
----------------
vhscampos wrote:
The problem is that I have another PR that also depends on #197707.
I can still merge the two PRs if you want. Please let me know
https://github.com/llvm/llvm-project/pull/197709
More information about the llvm-branch-commits
mailing list