diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tr.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index d21e672..15e3709 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c @@ -144,10 +144,11 @@ extern int tr_main(int argc, char **argv) int output_length=0, input_length; int index = 1; int i; - /* set up big arrays here (better than making a bunch of static arrays up top) */ - unsigned char output[BUFSIZ], input[BUFSIZ]; - unsigned char vector[ASCII + 1]; - char invec[ASCII + 1], outvec[ASCII + 1]; + RESERVE_BB_BUFFER(output, BUFSIZ); + RESERVE_BB_BUFFER(input, BUFSIZ); + RESERVE_BB_UBUFFER(vector, ASCII+1); + RESERVE_BB_BUFFER(invec, ASCII+1); + RESERVE_BB_BUFFER(outvec, ASCII+1); /* ... but make them available globally */ poutput = output; |