isinf: Coding style.
authorBruno Haible <bruno@clisp.org>
Sun, 19 Jun 2011 19:19:27 +0000 (21:19 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 19 Jun 2011 19:19:27 +0000 (21:19 +0200)
* lib/isinf.c: Use GNU coding style.

ChangeLog
lib/isinf.c

index 31c07f0..b0bdd21 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2011-06-19  Bruno Haible  <bruno@clisp.org>
 
+       isinf: Coding style.
+       * lib/isinf.c: Use GNU coding style.
+
+2011-06-19  Bruno Haible  <bruno@clisp.org>
+
        linkat test: Avoid test failure on AIX 7.1.
        * tests/test-linkat.c (main): Allow EINVAL as alternate error value.
        * tests/test-link.h (test_link): Likewise.
index cba9ede..7ccca79 100644 (file)
 
 #include <float.h>
 
-int gl_isinff (float x)
+int
+gl_isinff (float x)
 {
   return x < -FLT_MAX || x > FLT_MAX;
 }
 
-int gl_isinfd (double x)
+int
+gl_isinfd (double x)
 {
   return x < -DBL_MAX || x > DBL_MAX;
 }
 
-int gl_isinfl (long double x)
+int
+gl_isinfl (long double x)
 {
   return x < -LDBL_MAX || x > LDBL_MAX;
 }