diff options
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r-- | coreutils/expr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index 24e75b556..c986f9327 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
@@ -100,6 +100,7 @@ struct globals { | |||
100 | char **args; | 100 | char **args; |
101 | } FIX_ALIASING; | 101 | } FIX_ALIASING; |
102 | #define G (*(struct globals*)&bb_common_bufsiz1) | 102 | #define G (*(struct globals*)&bb_common_bufsiz1) |
103 | #define INIT_G() do { } while (0) | ||
103 | 104 | ||
104 | /* forward declarations */ | 105 | /* forward declarations */ |
105 | static VALUE *eval(void); | 106 | static VALUE *eval(void); |
@@ -519,6 +520,8 @@ int expr_main(int argc UNUSED_PARAM, char **argv) | |||
519 | { | 520 | { |
520 | VALUE *v; | 521 | VALUE *v; |
521 | 522 | ||
523 | INIT_G(); | ||
524 | |||
522 | xfunc_error_retval = 2; /* coreutils compat */ | 525 | xfunc_error_retval = 2; /* coreutils compat */ |
523 | G.args = argv + 1; | 526 | G.args = argv + 1; |
524 | if (*G.args == NULL) { | 527 | if (*G.args == NULL) { |