Removed 'Written by' line
[pspp-builds.git] / lib / gsl-extras / binomial.c
index a85f4a3d7e61cb87dcf5958f8d0379c238453344..847247d40771b3c97c4e8966123686cc4c691631 100644 (file)
@@ -1,6 +1,7 @@
 /* cdf/binomial.c
  *
- * Copyright (C) 2004 Jason H. Stover.
+ * Copyright (C) 2004 Free Software Foundation, Inc.
+ * 
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
 
 /*
  *
  * where Y is a beta random variable with parameters k+1 and n-k.
  *
- * Reference: 
- * 
+ * Reference:
+ *
  * W. Feller, "An Introduction to Probability and Its
  * Applications," volume 1. Wiley, 1968. Exercise 45, page 173,
  * chapter 6.
  */
-#include <config.h>
 #include <math.h>
 #include <gsl/gsl_math.h>
 #include <gsl/gsl_errno.h>
@@ -64,7 +64,7 @@ gslextras_cdf_binomial_P(const long k, const long n, const double p)
       b = (double) n - k;
       P = gsl_cdf_beta_Q( p, a, b);
     }
-  
+
   return P;
 }
 double