From b2b6822af79b663eb6ec0d0d5f14ede44bb806c7 Mon Sep 17 00:00:00 2001 From: EmployedRussian <39165328+EmployedRussian@users.noreply.github.com> Date: Sun, 21 Apr 2024 18:33:46 -0700 Subject: [PATCH 1/2] To fix issue #6984, #include The file uses va_arg etc, so it should #include --- pal/src/safecrt/output.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pal/src/safecrt/output.inl b/pal/src/safecrt/output.inl index c63f36df545..63a23e14790 100644 --- a/pal/src/safecrt/output.inl +++ b/pal/src/safecrt/output.inl @@ -51,7 +51,7 @@ Buffer size required to be passed to _gcvt, fcvt and other fp conversion routine //#include //#include //#include -//#include +#include //#include //#include //#include From 55e4b8313a2638a77dfa0f4862f39ef957edd210 Mon Sep 17 00:00:00 2001 From: Petr Penzin Date: Mon, 22 Apr 2024 09:30:22 -0700 Subject: [PATCH 2/2] Fix copyright notice in output.inl Add new copyright notice to pal/src/safecrt/output.inl --- pal/src/safecrt/output.inl | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pal/src/safecrt/output.inl b/pal/src/safecrt/output.inl index 63a23e14790..252a25e8f73 100644 --- a/pal/src/safecrt/output.inl +++ b/pal/src/safecrt/output.inl @@ -1,6 +1,10 @@ -// -// Copyright (c) Microsoft. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. +//------------------------------------------------------------------------------------------------------- +// ChakraCore/Pal +// Contains portions (c) copyright Microsoft, portions copyright (c) the .NET Foundation and Contributors +// and edits (c) copyright the ChakraCore Contributors. +// See THIRD-PARTY-NOTICES.txt in the project root for .NET Foundation license +// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. +//------------------------------------------------------------------------------------------------------- // /***