aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tr.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r--coreutils/tr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c
index 32f6f5966..6eb86750d 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -178,7 +178,7 @@ static unsigned int expand(const char *arg, char *buffer)
178 178
179static int complement(char *buffer, int buffer_len) 179static int complement(char *buffer, int buffer_len)
180{ 180{
181 register short i, j, ix; 181 short i, j, ix;
182 char conv[ASCII + 2]; 182 char conv[ASCII + 2];
183 183
184 ix = 0; 184 ix = 0;
@@ -195,7 +195,7 @@ static int complement(char *buffer, int buffer_len)
195 195
196int tr_main(int argc, char **argv) 196int tr_main(int argc, char **argv)
197{ 197{
198 register unsigned char *ptr; 198 unsigned char *ptr;
199 int output_length=0, input_length; 199 int output_length=0, input_length;
200 int idx = 1; 200 int idx = 1;
201 int i; 201 int i;