| # | Line 13 | Line 13 | static const char RCSid[] = "$Id$"; | |
|---|---|---|
| 13 | #include <math.h> | |
| 14 | #include <ctype.h> | |
| 15 | ||
| 16 | < | #define MAXCOL 64 /* maximum number of input columns */ |
| 16 | > | #define MAXCOL 2048 /* maximum number of input columns */ |
| 17 | #define MAXDIV 1024 | |
| 18 | ||
| 19 | #define isint(x) (floor((x)+1e-6) != floor((x)-1e-6)) | |
| # | Line 50 | Line 50 | readinp(void) /* gather statistics on input */ | |
| 50 | d = atof(cp); | |
| 51 | while (*cp && !isspace(*cp)) | |
| 52 | cp++; | |
| 53 | < | if (d <= minv) |
| 53 | > | if (d < minv) |
| 54 | outrange[c][0]++; | |
| 55 | else if (d >= maxv) | |
| 56 | outrange[c][1]++; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |