Guess what? More anonymous unions!

This commit is contained in:
rsc 2004-03-25 23:25:45 +00:00
parent 285b4f85c0
commit 1a84af59e0
2 changed files with 11 additions and 11 deletions

View file

@ -76,12 +76,12 @@ EXTERN union
* if a line requires multiple reads, we keep shifting
* buf down into pre and then do another read into
* buf. so you'll get the last 16-32k of the matching line.
* if pre were smaller than buf you'd get a suffix of the
* if h were smaller than buf you'd get a suffix of the
* line with a hole cut out.
*/
uchar pre[16*1024]; /* to save to previous '\n' */
uchar buf[16*1024]; /* input buffer */
};
} u;
} u;
EXTERN char *filename;