diff options
author | Rob Landley <rob@landley.net> | 2006-03-10 19:22:06 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-10 19:22:06 +0000 |
commit | bc68cd14ccaebc17e7e03a08e51fddfb91007624 (patch) | |
tree | beb32cedafc6232bf8a49fe90f0769d471ea6791 /coreutils/stty.c | |
parent | dae6aa28598cb2353291f18ca52e768c3259165a (diff) |
Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't).
Diffstat (limited to 'coreutils/stty.c')
-rw-r--r-- | coreutils/stty.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c index a3526136f..8b70af65e 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c @@ -343,9 +343,10 @@ static const struct mode_info mode_info[] = { MI_ENTRY(stty_dec, combination, OMIT, 0, 0 ), }; -static const int NUM_mode_info = - - (sizeof(mode_info) / sizeof(struct mode_info)); +enum { + NUM_mode_info = + (sizeof(mode_info) / sizeof(struct mode_info)) +}; /* Control character settings. */ struct control_info { @@ -395,8 +396,10 @@ static const struct control_info control_info[] = { {stty_time, 0, VTIME}, }; -static const int NUM_control_info = - (sizeof(control_info) / sizeof(struct control_info)); +enum { + NUM_control_info = + (sizeof(control_info) / sizeof(struct control_info)) +}; #define EMT(t) ((enum mode_type)(t)) |