aboutsummaryrefslogtreecommitdiff
path: root/networking/ip.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/ip.c')
-rw-r--r--networking/ip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ip.c b/networking/ip.c
index 3a99fa320..004289667 100644
--- a/networking/ip.c
+++ b/networking/ip.c
@@ -22,12 +22,12 @@
22 || ENABLE_FEATURE_IP_TUNNEL \ 22 || ENABLE_FEATURE_IP_TUNNEL \
23 || ENABLE_FEATURE_IP_RULE 23 || ENABLE_FEATURE_IP_RULE
24 24
25static int ip_print_help(char **argv UNUSED_PARAM) 25static int FAST_FUNC ip_print_help(char **argv UNUSED_PARAM)
26{ 26{
27 bb_show_usage(); 27 bb_show_usage();
28} 28}
29 29
30typedef int (*ip_func_ptr_t)(char**); 30typedef int FAST_FUNC (*ip_func_ptr_t)(char**);
31 31
32static int ip_do(ip_func_ptr_t ip_func, char **argv) 32static int ip_do(ip_func_ptr_t ip_func, char **argv)
33{ 33{