From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129459 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 129354 invoked by uid 89); 5 Feb 2020 06:49:31 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.2 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=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:29 +0000 Received: from localhost (localhost [127.0.0.1]) by elaine.keithp.com (Postfix) with ESMTP id 95FCF3F2AC0C 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=aokU1hyY9fiJ4lNBZ7eK5bBXlWImDqihvOOhcWIMeCA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UbNFpBsrmFYRU52x2L1xndj4YsdpOPB9mTB+l36ClAbvtJPzgheGAB7NK/h2zoV6v fhuqyY3gOblUJUMtFM3crFfwyl4eg6SRC+ui1QPbPamK53u58Nq2cgcGyDTl21g1l5 KhKtsFrLeSOj45+pR3OS+Gw5lkouc4vxbZhN28gaS+cjh34sAcP9aqUatDvZhsphTV wroL3w3sqqAKz6NJw+Bkrvfq85tHePbul4thzFfSYRsxrd5y29/5g4Y0GKaMHpw5f+ 9obMiql507FsszVA4DEhiU84WSgs1EeGBUKn4Rooi/R3Q5Mgncav2T2xLfa5smzkou ScKjEaPegIZ3A== 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 jtp9P7NQWqj2; 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 5D05D3F2AC16; 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=aokU1hyY9fiJ4lNBZ7eK5bBXlWImDqihvOOhcWIMeCA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TeSNEHEifyHYQJVyU3RiYAc1ap5Ht9F/4d9oLFbmh5m54WjQDJbfYYd7HHEXOPNWY sC0HQmg+b0aRAw6IaTaUQGptFSxZcUFW0S/OQoL3B3AJ8QSp82gU0YhRDrDp4tTiRA O3WTsNuQX2C/t9Yp3qQgQkFVz9AIcM7zelU1Yimej7FtJ8GCKeDBM3XI8CtfddnxYD R+Z5XIzMaewEXFYmaZNUyA1KqMndWPNF2/rsWlgx4zxekp5AJS/aumrqBk7UYYludk hdx/WcjEcaT0bt1edcDdgs5v/hK1fFRn60EEI2ZN65a9cUjaEjYtWKajNB8ftFPFxL JuBah0FERxTKQ== Received: by keithp.com (Postfix, from userid 1000) id CED8115821C9; Tue, 4 Feb 2020 22:48:46 -0800 (PST) From: Keith Packard To: newlib@sourceware.org Cc: Keith Packard Subject: [PATCH 25/27] Add missing copyrights in newlib/testsuite Date: Wed, 05 Feb 2020 06:49:00 -0000 Message-Id: <20200205064844.929131-26-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/msg00053.txt Signed-off-by: Keith Packard --- newlib/testsuite/include/check.h | 6 ++++++ newlib/testsuite/newlib.elix/tmmap.c | 6 ++++++ newlib/testsuite/newlib.stdlib/atexit.c | 6 ++++++ newlib/testsuite/newlib.stdlib/size_max.c | 6 ++++++ newlib/testsuite/newlib.wctype/tiswctype.c | 1 + newlib/testsuite/newlib.wctype/twctrans.c | 3 +++ newlib/testsuite/newlib.wctype/twctype.c | 6 ++++++ 7 files changed, 34 insertions(+) diff --git a/newlib/testsuite/include/check.h b/newlib/testsuite/include/check.h index 70a71a1b9..97a1206d2 100644 --- a/newlib/testsuite/include/check.h +++ b/newlib/testsuite/include/check.h @@ -1,3 +1,9 @@ +/* +Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved. + +Permission to use, copy, modify, and distribute this software +is freely granted, provided that this notice is preserved. + */ #include #include diff --git a/newlib/testsuite/newlib.elix/tmmap.c b/newlib/testsuite/newlib.elix/tmmap.c index d930c96b1..abab67cef 100644 --- a/newlib/testsuite/newlib.elix/tmmap.c +++ b/newlib/testsuite/newlib.elix/tmmap.c @@ -1,3 +1,9 @@ +/* +Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved. + +Permission to use, copy, modify, and distribute this software +is freely granted, provided that this notice is preserved. + */ #include #include #include diff --git a/newlib/testsuite/newlib.stdlib/atexit.c b/newlib/testsuite/newlib.stdlib/atexit.c index 48fdb6733..1e3c7da09 100644 --- a/newlib/testsuite/newlib.stdlib/atexit.c +++ b/newlib/testsuite/newlib.stdlib/atexit.c @@ -1,3 +1,9 @@ +/* +Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved. + +Permission to use, copy, modify, and distribute this software +is freely granted, provided that this notice is preserved. + */ #include #include diff --git a/newlib/testsuite/newlib.stdlib/size_max.c b/newlib/testsuite/newlib.stdlib/size_max.c index d163e27d1..edbcf5ba4 100644 --- a/newlib/testsuite/newlib.stdlib/size_max.c +++ b/newlib/testsuite/newlib.stdlib/size_max.c @@ -1,3 +1,9 @@ +/* +Copyright (C) 2008 by CodeSourcery, Inc. All rights reserved. + +Permission to use, copy, modify, and distribute this software +is freely granted, provided that this notice is preserved. + */ #include #include #include diff --git a/newlib/testsuite/newlib.wctype/tiswctype.c b/newlib/testsuite/newlib.wctype/tiswctype.c index 441cddbe6..653a373e1 100644 --- a/newlib/testsuite/newlib.wctype/tiswctype.c +++ b/newlib/testsuite/newlib.wctype/tiswctype.c @@ -1,3 +1,4 @@ +/* Copyright (c) 2002 Jeff Johnston */ #include #include #include "check.h" diff --git a/newlib/testsuite/newlib.wctype/twctrans.c b/newlib/testsuite/newlib.wctype/twctrans.c index f8b7b50e5..ddd6eaf5e 100644 --- a/newlib/testsuite/newlib.wctype/twctrans.c +++ b/newlib/testsuite/newlib.wctype/twctrans.c @@ -1,3 +1,6 @@ +/* +Copyright (c) 2002 Jeff Johnston + */ #include #include #include "check.h" diff --git a/newlib/testsuite/newlib.wctype/twctype.c b/newlib/testsuite/newlib.wctype/twctype.c index 95be74d63..1f0640c59 100644 --- a/newlib/testsuite/newlib.wctype/twctype.c +++ b/newlib/testsuite/newlib.wctype/twctype.c @@ -1,3 +1,9 @@ +/* +Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved. + +Permission to use, copy, modify, and distribute this software +is freely granted, provided that this notice is preserved. + */ #include #include #include -- 2.25.0