diff options
| author | Ron Yorston <rmy@pobox.com> | 2016-05-16 09:33:03 +0100 |
|---|---|---|
| committer | Ron Yorston <rmy@pobox.com> | 2016-05-16 09:33:03 +0100 |
| commit | 35d2f5bccb0f3dde600702ebcdb5424d4d50be4a (patch) | |
| tree | 6e0ff0341c69839e268459a199682628bae734ed /coreutils/expr.c | |
| parent | 248a2600a2f4b442101ad568d1994b908bb28d4b (diff) | |
| parent | f2559e5c2b7bd2c5fa0dd8e88d0a931da92a23af (diff) | |
| download | busybox-w32-35d2f5bccb0f3dde600702ebcdb5424d4d50be4a.tar.gz busybox-w32-35d2f5bccb0f3dde600702ebcdb5424d4d50be4a.tar.bz2 busybox-w32-35d2f5bccb0f3dde600702ebcdb5424d4d50be4a.zip | |
Merge branch 'busybox' into merge
Diffstat (limited to 'coreutils/expr.c')
| -rw-r--r-- | coreutils/expr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index c986f9327..ce6b2d189 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
| @@ -61,6 +61,7 @@ | |||
| 61 | //usage: "of characters matched or 0." | 61 | //usage: "of characters matched or 0." |
| 62 | 62 | ||
| 63 | #include "libbb.h" | 63 | #include "libbb.h" |
| 64 | #include "common_bufsiz.h" | ||
| 64 | #include "xregex.h" | 65 | #include "xregex.h" |
| 65 | 66 | ||
| 66 | #if ENABLE_EXPR_MATH_SUPPORT_64 | 67 | #if ENABLE_EXPR_MATH_SUPPORT_64 |
| @@ -99,8 +100,8 @@ typedef struct valinfo VALUE; | |||
| 99 | struct globals { | 100 | struct globals { |
| 100 | char **args; | 101 | char **args; |
| 101 | } FIX_ALIASING; | 102 | } FIX_ALIASING; |
| 102 | #define G (*(struct globals*)&bb_common_bufsiz1) | 103 | #define G (*(struct globals*)bb_common_bufsiz1) |
| 103 | #define INIT_G() do { } while (0) | 104 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
| 104 | 105 | ||
| 105 | /* forward declarations */ | 106 | /* forward declarations */ |
| 106 | static VALUE *eval(void); | 107 | static VALUE *eval(void); |
