From: bel2125 Date: Fri, 1 Sep 2017 08:47:03 +0000 (+0200) Subject: Set license statement X-Git-Tag: 0.12.0~4^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1e98d6b1e79cd5064240b57411203d704e5feea;p=check Set license statement --- diff --git a/AUTHORS b/AUTHORS index 014e42c..229c8d1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -116,6 +116,11 @@ Contributors: (corner case segfault fix) Dotsenko Andrey Nikolaevich (floating point comparison macros) + bel2125 + (AppVeyor build with multiple Visual Studio versions, + test source code compliance to C89/C90 standard, + substitution functions for floating point functions missing + in older C standard libraries) Anybody who has contributed code to Check or Check's build system is considered an author. Submit a pull request of this file or send diff --git a/lib/fpclassify.c b/lib/fpclassify.c index 800f224..2efa3a3 100644 --- a/lib/fpclassify.c +++ b/lib/fpclassify.c @@ -1,9 +1,24 @@ -/* Replacement function for isnan/isinf/isfinite for processors using - * IEEE 754 floating point format. - * Copyright (C) 2017, bel2125 - * License: LGPL v2 or MIT (as you like). +/* Copyright (C) 2017, bel2125 + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ +/* Note: Within "check", this file uses the LGPL license. + * If you need only this file, you may find a MIT licensed version in + * the "floatmagic" repository of the initial author. */ - #include "libcompat.h"