changeset 40175:a8866a23e6e2

fma: Improve code style. * lib/fma.c: Include <limits.h>, for CHAR_BIT.
author Bruno Haible <bruno@clisp.org>
date Sat, 02 Feb 2019 16:15:13 +0100
parents b76c7bdde2bf
children 8d1216613135
files ChangeLog lib/fma.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Feb 02 16:12:09 2019 +0100
+++ b/ChangeLog	Sat Feb 02 16:15:13 2019 +0100
@@ -1,3 +1,8 @@
+2019-02-02  Bruno Haible  <bruno@clisp.org>
+
+	fma: Improve code style.
+	* lib/fma.c: Include <limits.h>, for CHAR_BIT.
+
 2019-02-02  Colin Watson  <cjwatson@debian.org>
 
 	*-map tests: Fix compilation error.
--- a/lib/fma.c	Sat Feb 02 16:12:09 2019 +0100
+++ b/lib/fma.c	Sat Feb 02 16:15:13 2019 +0100
@@ -23,6 +23,7 @@
 /* Specification.  */
 #include <math.h>
 
+#include <limits.h>
 #include <stdbool.h>
 #include <stdlib.h>