diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 13:16:08 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 13:16:08 +0100 |
commit | a355da07756e529c112249653ed5af0e2d910728 (patch) | |
tree | 3b36dd1ec8618a39c8324bcfdca77f6f8f497a18 /include | |
parent | a4899efd03d2fdaaf3f581d89a7a4844832d3fbb (diff) | |
download | busybox-w32-a355da07756e529c112249653ed5af0e2d910728.tar.gz busybox-w32-a355da07756e529c112249653ed5af0e2d910728.tar.bz2 busybox-w32-a355da07756e529c112249653ed5af0e2d910728.zip |
*: make 2 more "int argc"'s unused; more saved if !DESKTOP
function old new delta
sync_main 18 20 +2
tty_main 90 87 -3
iprule_list 83 79 -4
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 8d3df6191..cda59dc1f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1022,7 +1022,11 @@ extern struct mntent *find_mount_point(const char *name, int subdir_too) FAST_FU | |||
1022 | extern void erase_mtab(const char * name) FAST_FUNC; | 1022 | extern void erase_mtab(const char * name) FAST_FUNC; |
1023 | extern unsigned int tty_baud_to_value(speed_t speed) FAST_FUNC; | 1023 | extern unsigned int tty_baud_to_value(speed_t speed) FAST_FUNC; |
1024 | extern speed_t tty_value_to_baud(unsigned int value) FAST_FUNC; | 1024 | extern speed_t tty_value_to_baud(unsigned int value) FAST_FUNC; |
1025 | extern void bb_warn_ignoring_args(int n) FAST_FUNC; | 1025 | #if ENABLE_DESKTOP |
1026 | extern void bb_warn_ignoring_args(char *arg) FAST_FUNC; | ||
1027 | #else | ||
1028 | # define bb_warn_ignoring_args(arg) ((void)0) | ||
1029 | #endif | ||
1026 | 1030 | ||
1027 | extern int get_linux_version_code(void) FAST_FUNC; | 1031 | extern int get_linux_version_code(void) FAST_FUNC; |
1028 | 1032 | ||