diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-20 17:27:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-20 17:27:40 +0000 |
commit | 45946f8b513d9c292613ac08c3ddf4a89b915752 (patch) | |
tree | d6ea51887431e4261a114b95989950d1973d3227 /coreutils | |
parent | 63db27f9f4c0ec8b9abe3c32c8d699be0781ffd6 (diff) | |
download | busybox-w32-45946f8b513d9c292613ac08c3ddf4a89b915752.tar.gz busybox-w32-45946f8b513d9c292613ac08c3ddf4a89b915752.tar.bz2 busybox-w32-45946f8b513d9c292613ac08c3ddf4a89b915752.zip |
runit/*: get rid of tai[a] time abstraction, it's too bloaty.
text data bss dec hex filename
772537 1058 11092 784687 bf92f busybox.t0/busybox
772459 1058 11060 784577 bf8c1 busybox.t1/busybox
772326 1058 11028 784412 bf81c busybox.t2/busybox
772158 1058 10980 784196 bf744 busybox.t3/busybox
771490 1055 10988 783533 bf4ad busybox.t4/busybox
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/od_bloaty.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index 8174ab6c9..44d0f2db0 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -155,9 +155,8 @@ static const signed char width_bytes[] ALIGN1 = { | |||
155 | }; | 155 | }; |
156 | /* Ensure that for each member of 'enum size_spec' there is an | 156 | /* Ensure that for each member of 'enum size_spec' there is an |
157 | initializer in the width_bytes array. */ | 157 | initializer in the width_bytes array. */ |
158 | struct dummy { | 158 | struct ERR_width_bytes_has_bad_size { |
159 | int assert_width_bytes_matches_size_spec_decl | 159 | char ERR_width_bytes_has_bad_size[ARRAY_SIZE(width_bytes) == N_SIZE_SPECS ? 1 : -1]; |
160 | [ARRAY_SIZE(width_bytes) == N_SIZE_SPECS ? 1 : -1]; | ||
161 | }; | 160 | }; |
162 | 161 | ||
163 | static smallint flag_dump_strings; | 162 | static smallint flag_dump_strings; |