aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tr.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-24 05:00:29 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-24 05:00:29 +0000
commitbdfd0d78bc44e73d693510e70087857785b3b521 (patch)
tree153a573095afac8d8d0ea857759ecabd77fb28b7 /coreutils/tr.c
parent9260fc5552a3ee52eb95823aa6689d52a1ffd33c (diff)
downloadbusybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.gz
busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.bz2
busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.zip
Major rework of the directory structure and the entire build system.
-Erik
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r--coreutils/tr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c
index 5b7b8d091..2665d926f 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -155,11 +155,11 @@ extern int tr_main(int argc, char **argv)
155 int output_length=0, input_length; 155 int output_length=0, input_length;
156 int idx = 1; 156 int idx = 1;
157 int i; 157 int i;
158 RESERVE_BB_BUFFER(output, BUFSIZ); 158 RESERVE_CONFIG_BUFFER(output, BUFSIZ);
159 RESERVE_BB_BUFFER(input, BUFSIZ); 159 RESERVE_CONFIG_BUFFER(input, BUFSIZ);
160 RESERVE_BB_UBUFFER(vector, ASCII+1); 160 RESERVE_CONFIG_UBUFFER(vector, ASCII+1);
161 RESERVE_BB_BUFFER(invec, ASCII+1); 161 RESERVE_CONFIG_BUFFER(invec, ASCII+1);
162 RESERVE_BB_BUFFER(outvec, ASCII+1); 162 RESERVE_CONFIG_BUFFER(outvec, ASCII+1);
163 163
164 /* ... but make them available globally */ 164 /* ... but make them available globally */
165 poutput = output; 165 poutput = output;