Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / libpspp / misc.h
index fbd11eec3c32fc3f2536fbf6bc6ad4e80471e11c..969b2621f043dbc9abfbca8e9b8c90edf937003b 100644 (file)
@@ -59,21 +59,21 @@ int intlog10 (unsigned);
 
 /* Returns the square of X. */
 static inline double
-pow2 (double x) 
+pow2 (double x)
 {
   return x * x;
 }
 
 /* Returns the cube of X. */
 static inline double
-pow3 (double x) 
+pow3 (double x)
 {
   return x * x * x;
 }
 
 /* Returns the fourth power of X. */
 static inline double
-pow4 (double x) 
+pow4 (double x)
 {
   double y = x * x;
   y *= y;