X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Ffreq.c;h=f2054380b8807fff50107d3a5b8902a484a6e742;hb=bd00412ff6cf29cf3b7744bf1045f53122eb46f7;hp=f5db0fecda3bdeff08a1be0cacd7ff8235c86e08;hpb=d7d263511bd18042408c40d5536c20c59988ee15;p=pspp-builds.git diff --git a/src/language/stats/freq.c b/src/language/stats/freq.c index f5db0fec..f2054380 100644 --- a/src/language/stats/freq.c +++ b/src/language/stats/freq.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 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 the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + 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 + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include #include @@ -25,7 +23,7 @@ #include "freq.h" -int +int compare_freq ( const void *_f1, const void *_f2, const void *_var) { const struct freq *f1 = _f1; @@ -45,7 +43,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; @@ -53,7 +51,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);