]> granicus.if.org Git - check/commitdiff
Set license statement
authorbel2125 <bel2125@gmail.com>
Fri, 1 Sep 2017 08:47:03 +0000 (10:47 +0200)
committerbel2125 <bel2125@gmail.com>
Fri, 1 Sep 2017 08:47:03 +0000 (10:47 +0200)
AUTHORS
lib/fpclassify.c

diff --git a/AUTHORS b/AUTHORS
index 014e42cc1b5f001cc90233a3c24aefa9cd62f001..229c8d183d7617ebe433b393eeebc693c9b28d07 100644 (file)
--- 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
index 800f2243489e835e1ec7537b16a97e6ac66c7654..2efa3a350f6d7fa9464d81f1cddd8493d394aefe 100644 (file)
@@ -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"