Add missing static keywords to ministat(1)

This commit is contained in:
Ed Schouten 2011-11-06 08:16:11 +00:00
parent efd6c7ccc9
commit 23f01dcfd1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227173

View File

@ -23,8 +23,8 @@ __FBSDID("$FreeBSD$");
#define NSTUDENT 100
#define NCONF 6
double const studentpct[] = { 80, 90, 95, 98, 99, 99.5 };
double student [NSTUDENT + 1][NCONF] = {
static double const studentpct[] = { 80, 90, 95, 98, 99, 99.5 };
static double student[NSTUDENT + 1][NCONF] = {
/* inf */ { 1.282, 1.645, 1.960, 2.326, 2.576, 3.090 },
/* 1. */ { 3.078, 6.314, 12.706, 31.821, 63.657, 318.313 },
/* 2. */ { 1.886, 2.920, 4.303, 6.965, 9.925, 22.327 },