Merge remote-tracking branch 'origin/master' into sheet
[pspp] / lib / tukey / ptukey.c
index 9a89104cf90e78f206a002e611d850b5ad922eb6..2af46cf89378fa6840502d3e986c6e38211420b2 100644 (file)
@@ -59,7 +59,7 @@
  *    Vol.30, pp.1-15, 1988.
  */
 
+
 
 #include <config.h>
 
 #define ME_PRECISION   8
 
 
-static inline double 
+static inline double
 pnorm(double x, double mu, double sigma, int lower_tail, int log_p)
 {
   assert (lower_tail == 1);
   assert (log_p == 0);
   assert (sigma == 1.0);
-  
+
   return gsl_cdf_gaussian_P (x - mu, sigma);
 }