# | Line 13 | Line 13 | static const char RCSid[] = "$Id$"; | |
---|---|---|
13 | #include "platform.h" | |
14 | #include "paths.h" | |
15 | ||
16 | < | #define MAXLINE 262144 /* maximum input line */ |
16 | > | #ifndef MAXLINE |
17 | > | #define MAXLINE (1L<<20) /* maximum input line per stream */ |
18 | > | #endif |
19 | ||
20 | struct instream { /* structure to hold input stream info */ | |
21 | FILE *input; /* input stream */ |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |