From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129753 invoked by alias); 5 Feb 2020 06:49:34 -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 129676 invoked by uid 89); 5 Feb 2020 06:49:33 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.8 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_ASCII_DIVIDERS,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=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:31 +0000 Received: from localhost (localhost [127.0.0.1]) by elaine.keithp.com (Postfix) with ESMTP id 69D6E3F2AC12 for ; Tue, 4 Feb 2020 22:49:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=keithp.com; s=mail; t=1580885345; bh=Z+t4Jk7keO65LoLpCBg1hcR2Kwpf/OHTXwKEz7bUrCU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JWOxg8ZhA6L0Y+tT8RzwEQTUuDuCypcT0lcIOnf7mOMghM++rTasPOYQzrymokcUr 1kBRtdbfv3btPk4c9AC7zyeRWSv9fJGFZcP2EaarUI0TabjxQFRXzymQ5QGYpFUl4s AcOdUbL1LZL9DhZebbHouZeD5on/quHezHVmrqkSTiBrXIM3BDVPjys1M+uH1ts+Lr SXo36UMhq0vpNUc4p1WjYbcPcMfiodz0DzSHpj20YKqJWYEP+XA/ppddfd2Y6voS8/ kOwBoPkJ70iGk9Rp5shP+wGxurQW5HLQ1pC8Ta0dQWk5JyYEkj1uJcO9uXqpbcB4Il MLyppuYwtBBBg== 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 qGdOB_WyK707; Tue, 4 Feb 2020 22:49:05 -0800 (PST) Received: from keithp.com (koto.keithp.com [10.0.0.2]) by elaine.keithp.com (Postfix) with ESMTPSA id 5D2B43F2AC17; 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=Z+t4Jk7keO65LoLpCBg1hcR2Kwpf/OHTXwKEz7bUrCU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OMKlhOUpcvJtn6dBwLTFRAOboD8Cxa5pfPU1qsvakY0g57wxZ2GDJE0Yjfs5mnAvM rcJ3ftoQopkQlK2b5NW9wEz99IrJlRkjc849DBrFs+yEAzcnofNogeJ6ycv6D+XV0R QqMrwFu6XfQ2eRznVrk0K3/jJHmBd+1pPH2+5CufDYk5XJUjRdidR4ViLPlUlGxNve 39p8mA9jah63Osbyrl/BuDjz+TgU3YK9nR7o+GCFsm3NbvwB2mMWnyPc2RMQ0vcpz9 StUXQN23YTyYHylvdmhTKabA97HIubeLyMSiFD0YFa4I/SmqJtov2SLEtbvqTUfVXt DTH0AXylRkfrA== Received: by keithp.com (Postfix, from userid 1000) id D485A15821CB; Tue, 4 Feb 2020 22:48:46 -0800 (PST) From: Keith Packard To: newlib@sourceware.org Cc: Keith Packard Subject: [PATCH 27/27] Add missing copyrights in newlib/libm/machine/i386 Date: Wed, 05 Feb 2020 06:49:00 -0000 Message-Id: <20200205064844.929131-28-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/msg00057.txt Signed-off-by: Keith Packard --- newlib/libm/machine/i386/f_llrint.c | 1 + newlib/libm/machine/i386/f_llrintf.c | 9 +++++++++ newlib/libm/machine/i386/f_llrintl.c | 9 +++++++++ newlib/libm/machine/i386/f_lrint.c | 9 +++++++++ newlib/libm/machine/i386/f_lrintf.c | 9 +++++++++ newlib/libm/machine/i386/f_lrintl.c | 9 +++++++++ newlib/libm/machine/i386/f_rint.c | 9 +++++++++ newlib/libm/machine/i386/f_rintf.c | 9 +++++++++ newlib/libm/machine/i386/f_rintl.c | 9 +++++++++ 9 files changed, 73 insertions(+) diff --git a/newlib/libm/machine/i386/f_llrint.c b/newlib/libm/machine/i386/f_llrint.c index 6cc81ea1f..8bf585dd1 100644 --- a/newlib/libm/machine/i386/f_llrint.c +++ b/newlib/libm/machine/i386/f_llrint.c @@ -1,3 +1,4 @@ +/* Copyright (c) 2007 Dave Korn */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_llrintf.c b/newlib/libm/machine/i386/f_llrintf.c index 427ad204c..81e1abe18 100644 --- a/newlib/libm/machine/i386/f_llrintf.c +++ b/newlib/libm/machine/i386/f_llrintf.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_llrintl.c b/newlib/libm/machine/i386/f_llrintl.c index 610270c3d..4e4c1c244 100644 --- a/newlib/libm/machine/i386/f_llrintl.c +++ b/newlib/libm/machine/i386/f_llrintl.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_lrint.c b/newlib/libm/machine/i386/f_lrint.c index 62b2c41ed..15d535830 100644 --- a/newlib/libm/machine/i386/f_lrint.c +++ b/newlib/libm/machine/i386/f_lrint.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_lrintf.c b/newlib/libm/machine/i386/f_lrintf.c index da8ffa62d..fd4f8eb10 100644 --- a/newlib/libm/machine/i386/f_lrintf.c +++ b/newlib/libm/machine/i386/f_lrintf.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_lrintl.c b/newlib/libm/machine/i386/f_lrintl.c index eae2bca28..d47ffdfb8 100644 --- a/newlib/libm/machine/i386/f_lrintl.c +++ b/newlib/libm/machine/i386/f_lrintl.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_rint.c b/newlib/libm/machine/i386/f_rint.c index e72316f22..ba73271f8 100644 --- a/newlib/libm/machine/i386/f_rint.c +++ b/newlib/libm/machine/i386/f_rint.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_rintf.c b/newlib/libm/machine/i386/f_rintf.c index a7dabb7f3..df109948a 100644 --- a/newlib/libm/machine/i386/f_rintf.c +++ b/newlib/libm/machine/i386/f_rintf.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by diff --git a/newlib/libm/machine/i386/f_rintl.c b/newlib/libm/machine/i386/f_rintl.c index 0e67739b5..78c958040 100644 --- a/newlib/libm/machine/i386/f_rintl.c +++ b/newlib/libm/machine/i386/f_rintl.c @@ -1,3 +1,12 @@ +/* +Copyright (c) 2007 Dave Korn + + +x87 FP implementation contributed to Newlib by +Dave Korn, November 2007. This file is placed in the +public domain. Permission to use, copy, modify, and +distribute this software is freely granted. + */ /* * ==================================================== * x87 FP implementation contributed to Newlib by -- 2.25.0