aboutsummaryrefslogtreecommitdiff
path: root/tr.c
diff options
context:
space:
mode:
Diffstat (limited to 'tr.c')
-rw-r--r--tr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tr.c b/tr.c
index 07922af17..a5d068262 100644
--- a/tr.c
+++ b/tr.c
@@ -31,7 +31,9 @@
31#include <sys/types.h> 31#include <sys/types.h>
32#include "busybox.h" 32#include "busybox.h"
33 33
34static const int ASCII = 0377; 34/* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are
35 * enabled, we otherwise get a "storage size isn't constant error. */
36#define ASCII 0377
35 37
36/* some "globals" shared across this file */ 38/* some "globals" shared across this file */
37static char com_fl, del_fl, sq_fl; 39static char com_fl, del_fl, sq_fl;