Delete trailing whitespace at end of lines.
[pspp-builds.git] / lib / gsl-extras / poisson.c
index 6da18aba8ac2e4a18a005ce278d147a08a594da0..7db5df10f42167dd4a7e45516a6630f0e335a710 100644 (file)
@@ -26,8 +26,8 @@
  *
  * where Y is a gamma random variable with parameters k+1 and 1.
  *
- * Reference: 
- * 
+ * Reference:
+ *
  * W. Feller, "An Introduction to Probability and Its
  * Applications," volume 1. Wiley, 1968. Exercise 46, page 173,
  * chapter 6.
@@ -46,7 +46,7 @@ gslextras_cdf_poisson_P (const long k, const double lambda)
 {
   double P;
   double a;
-  
+
   if ( lambda <= 0.0 )
     {
       GSLEXTRAS_CDF_ERROR ("lambda <= 0", GSL_EDOM);
@@ -71,7 +71,7 @@ gslextras_cdf_poisson_Q (const long k, const double lambda)
 {
   double P;
   double a;
-  
+
   if ( lambda <= 0.0 )
     {
       GSLEXTRAS_CDF_ERROR ("lambda <= 0", GSL_EDOM);