diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-12 08:52:02 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-12 08:52:02 +0000 |
commit | 15611bb95815de14bcb35f66bd10089a322ea30b (patch) | |
tree | 818f4e4a208cc04e37f2ea12fd4bda4eae30dd4c /include | |
parent | 16d58d75ee11f3b50550fbef7da12a4adbab66d4 (diff) | |
download | busybox-w32-15611bb95815de14bcb35f66bd10089a322ea30b.tar.gz busybox-w32-15611bb95815de14bcb35f66bd10089a322ea30b.tar.bz2 busybox-w32-15611bb95815de14bcb35f66bd10089a322ea30b.zip |
A few more string duplicates found & eliminated
# size busybox_old busybox_unstripped
text data bss dec hex filename
679693 2700 15632 698025 aa6a9 busybox_old
679523 2700 15632 697855 aa5ff busybox_unstripped
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index a32a74253..d42ce5f39 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -953,6 +953,10 @@ extern const char bb_path_motd_file[]; | |||
953 | extern const char bb_path_wtmp_file[]; | 953 | extern const char bb_path_wtmp_file[]; |
954 | extern const char bb_dev_null[]; | 954 | extern const char bb_dev_null[]; |
955 | extern const char bb_busybox_exec_path[]; | 955 | extern const char bb_busybox_exec_path[]; |
956 | /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin, | ||
957 | * but I want to save a few bytes here */ | ||
958 | extern const char bb_default_root_login_path[]; /* "/sbin:/usr/sbin:/bin:/usr/bin" */ | ||
959 | #define bb_default_login_path (bb_default_root_login_path + sizeof("/sbin:/usr/sbin")) | ||
956 | 960 | ||
957 | extern const int const_int_0; | 961 | extern const int const_int_0; |
958 | extern const int const_int_1; | 962 | extern const int const_int_1; |