Patch from Denis Vlasenko turning static const int (which gets emitted into

the busybox binary) into enums (which don't).
This commit is contained in:
Rob Landley
2006-03-10 19:22:06 +00:00
parent dae6aa2859
commit bc68cd14cc
28 changed files with 243 additions and 193 deletions

View File

@@ -57,11 +57,13 @@ enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
};
#endif
static const unsigned int DEFAULT_CONTEXT=0x1;
static const unsigned int IF_TRUE_CONTEXT=0x2;
static const unsigned int IF_FALSE_CONTEXT=0x4;
static const unsigned int THEN_EXP_CONTEXT=0x8;
static const unsigned int ELSE_EXP_CONTEXT=0x10;
enum {
DEFAULT_CONTEXT = 0x1,
IF_TRUE_CONTEXT = 0x2,
IF_FALSE_CONTEXT = 0x4,
THEN_EXP_CONTEXT = 0x8,
ELSE_EXP_CONTEXT = 0x10
};
#ifdef CONFIG_LASH_PIPE_N_REDIRECTS
struct redir_struct {