From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129485 invoked by alias); 5 Feb 2020 06:49:32 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 129431 invoked by uid 89); 5 Feb 2020 06:49:31 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=sincos, business, HContent-Transfer-Encoding:8bit X-HELO: elaine.keithp.com Received: from home.keithp.com (HELO elaine.keithp.com) (63.227.221.253) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 05 Feb 2020 06:49:30 +0000 Received: from localhost (localhost [127.0.0.1]) by elaine.keithp.com (Postfix) with ESMTP id E9D4E3F2AC11 for ; Tue, 4 Feb 2020 22:49:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=keithp.com; s=mail; t=1580885344; bh=HiyU/ZQMd1nrpNCxTEnmP2rY5DhS24HrUwFAQRTloK8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EgRNrxOu0t1ZFJ8ZOhn2qTqsPcyWNUD3zNN8BcQUkTZGkzZvBFZu+OW2ufRB3M5C1 kb3Tj74Jmc9qBvINquQZu3C11LtycuMb0yE7cO2Svic/JYX3dXKV9P07T3dEFQJhlL VvCUNAKo/cUdNVH+X8arilTf4IVnw2HBfQ3OVYJ/RxulbEt4a7DbCFQBIuc5/pg32A Z5K/avsT/ueD0BKAKG8zyycvX8a8IqGC6fc6cjYMhMjvg0+KV5MbVOcdVd1EcfQLwX YT+1LD05aA/7QAQe58d6TNF2D0CNkhyaIE3pbOfNKl20nvZHLfFFlNdp5mbPOPGvG7 51hw9PdsSaK2g== Received: from elaine.keithp.com ([127.0.0.1]) by localhost (elaine.keithp.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ucmuN6Tayr4v; Tue, 4 Feb 2020 22:49:04 -0800 (PST) Received: from keithp.com (koto.keithp.com [10.0.0.2]) by elaine.keithp.com (Postfix) with ESMTPSA id 5A66C3F2AC14; Tue, 4 Feb 2020 22:48:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=keithp.com; s=mail; t=1580885327; bh=HiyU/ZQMd1nrpNCxTEnmP2rY5DhS24HrUwFAQRTloK8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LfTQjl57PgZbSYL4IlFm76QRgPc0OQSDYDtW5xKydMAaItosiK9cJIqnVIUX/Wm1p DkfHtN4UCL1tiHUD/jDZ8q67SUAAZVv/5IJRL4Fi8U+QTXtKlaztx49VxBnbUFTDdD r98f2o6ctYnJ4x6G9zQGlYhKD5iE6Nq8RFHcL/Ol4v2OnsuvFrhWqIC9rM3KZY3Umv v3M7VElPx7+0/ESEcK6XWBp5WJ2oyZC+3SOfGaXpleOqE6zsaETc0YXeuyP1OZc84x 3Di5ep0JIumrxzxXLP+JRszIEjvxgKAwRC/n4/qwLj37XnKAepYcFz39BgV30cwSxM uEcOyebGMwv0w== Received: by keithp.com (Postfix, from userid 1000) id CB91715821A8; Tue, 4 Feb 2020 22:48:46 -0800 (PST) From: Keith Packard To: newlib@sourceware.org Cc: Keith Packard Subject: [PATCH 24/27] Add missing copyrights in newlib/libm/math Date: Wed, 05 Feb 2020 06:49:00 -0000 Message-Id: <20200205064844.929131-25-keithp@keithp.com> In-Reply-To: <20200205064844.929131-1-keithp@keithp.com> References: <20200205064844.929131-1-keithp@keithp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2020/txt/msg00059.txt Signed-off-by: Keith Packard --- newlib/libm/math/math.tex | 8 ++++++++ newlib/libm/math/w_drem.c | 8 ++++++++ newlib/libm/math/w_sincos.c | 1 + newlib/libm/math/wf_drem.c | 8 ++++++++ newlib/libm/math/wf_sincos.c | 1 + 5 files changed, 26 insertions(+) diff --git a/newlib/libm/math/math.tex b/newlib/libm/math/math.tex index 92b384f63..6fb3d4c75 100644 --- a/newlib/libm/math/math.tex +++ b/newlib/libm/math/math.tex @@ -1,3 +1,11 @@ +# +#Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. +# +#Developed at SunPro, a Sun Microsystems, Inc. business. +#Permission to use, copy, modify, and distribute this +#software is freely granted, provided that this notice +#is preserved. +# @node Math @chapter Mathematical Functions (@file{math.h}) diff --git a/newlib/libm/math/w_drem.c b/newlib/libm/math/w_drem.c index d289bdaac..64ff4068e 100644 --- a/newlib/libm/math/w_drem.c +++ b/newlib/libm/math/w_drem.c @@ -1,3 +1,11 @@ +/* +Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + +Developed at SunPro, a Sun Microsystems, Inc. business. +Permission to use, copy, modify, and distribute this +software is freely granted, provided that this notice +is preserved. + */ /* * drem() wrapper for remainder(). * diff --git a/newlib/libm/math/w_sincos.c b/newlib/libm/math/w_sincos.c index 491efa418..01f61adaf 100644 --- a/newlib/libm/math/w_sincos.c +++ b/newlib/libm/math/w_sincos.c @@ -1,3 +1,4 @@ +/* Copyright (c) 2002 Thomas Fitzsimmons */ /* sincos -- currently no more efficient than two separate calls to sin and cos. */ diff --git a/newlib/libm/math/wf_drem.c b/newlib/libm/math/wf_drem.c index 7c3f7c58e..8d1ecf2e8 100644 --- a/newlib/libm/math/wf_drem.c +++ b/newlib/libm/math/wf_drem.c @@ -1,3 +1,11 @@ +/* +Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + +Developed at SunPro, a Sun Microsystems, Inc. business. +Permission to use, copy, modify, and distribute this +software is freely granted, provided that this notice +is preserved. + */ /* * dremf() wrapper for remainderf(). * diff --git a/newlib/libm/math/wf_sincos.c b/newlib/libm/math/wf_sincos.c index 69eb922c9..d850bc8fb 100644 --- a/newlib/libm/math/wf_sincos.c +++ b/newlib/libm/math/wf_sincos.c @@ -1,3 +1,4 @@ +/* Copyright (c) 2002 Thomas Fitzsimmons */ /* sincos -- currently no more efficient than two separate calls to sin and cos. */ #include "fdlibm.h" -- 2.25.0