From: Ben Pfaff Date: Sat, 18 Sep 2010 04:25:19 +0000 (-0700) Subject: linreg: Delete unused static function. X-Git-Tag: sav-api~37 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaf7e27cbda4b400b6a98360fa7bab08e26c8696;hp=dc7b35971ff0214f6dc5f1a2c909a63a053a95b7;p=pspp linreg: Delete unused static function. This function drew attention to itself through a warning about a missing return type, but it isn't used so just delete it instead of adding a return type --- diff --git a/src/math/linreg.c b/src/math/linreg.c index fe01ac39e4..63d1a0f976 100644 --- a/src/math/linreg.c +++ b/src/math/linreg.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2010 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 @@ -461,9 +461,3 @@ linreg_get_depvar_mean (linreg *c) { return c->depvar_mean; } -static -linreg_set_dependent_column (linreg *c, int column) -{ - c->dependent_column = column; -} -