X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fregression.q;h=6f9dc6ccaaa1d63c980e0435790ba2509eab97bf;hb=8297784ffdab47d35820735eb130a484ba9b6c01;hp=1690abc0c9d1f614a5ddad2e16438a868949fe5d;hpb=9685c5889f0eef90258880bf1202cf5678f3a3b7;p=pspp-builds.git diff --git a/src/language/stats/regression.q b/src/language/stats/regression.q index 1690abc0..6f9dc6cc 100644 --- a/src/language/stats/regression.q +++ b/src/language/stats/regression.q @@ -84,7 +84,7 @@ static struct cmd_regression cmd; /* Linear regression models. */ -pspp_linreg_cache **models = NULL; +static pspp_linreg_cache **models = NULL; /* Transformations for saving predicted values @@ -110,12 +110,12 @@ static size_t n_variables; File where the model will be saved if the EXPORT subcommand is given. */ -struct file_handle *model_file; +static struct file_handle *model_file; /* Return value for the procedure. */ -int pspp_reg_rc = CMD_SUCCESS; +static int pspp_reg_rc = CMD_SUCCESS; static bool run_regression (const struct ccase *, const struct casefile *, void *);