Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / language / stats / freq.c
index 9ecc379027d7b680314b38acc43e513418cf366f..ae35b8a7a1580ad873da25b62ffc2dc5bab95e22 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2006 Free Software Foundation, Inc.
-   Written by John Darrington <john@darrington.wattle.id.au>
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -26,7 +25,7 @@
 
 #include "freq.h"
 
-int 
+int
 compare_freq ( const void *_f1, const void *_f2, const void *_var)
 {
   const struct freq *f1 = _f1;
@@ -46,7 +45,7 @@ hash_freq (const void *_f, const void *_var)
 }
 
 /* Free function to be used on FR whose value parameter has been copied */
-void 
+void
 free_freq_mutable_hash (void *fr, const void *var UNUSED)
 {
   struct freq_mutable *freq = fr;
@@ -54,7 +53,7 @@ free_freq_mutable_hash (void *fr, const void *var UNUSED)
   free (freq);
 }
 
-void 
+void
 free_freq_hash (void *fr, const void *var UNUSED)
 {
   free (fr);