aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r--networking/udhcp/dhcpc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index fdcd17f79..c97e422e2 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -81,7 +81,7 @@ struct client_config_t client_config = {
81}; 81};
82 82
83#ifndef IN_BUSYBOX 83#ifndef IN_BUSYBOX
84static void __attribute__ ((noreturn)) show_usage(void) 84static void __attribute__ ((noreturn)) bb_show_usage(void)
85{ 85{
86 printf( 86 printf(
87"Usage: udhcpc [OPTIONS]\n\n" 87"Usage: udhcpc [OPTIONS]\n\n"
@@ -104,7 +104,7 @@ static void __attribute__ ((noreturn)) show_usage(void)
104 exit(0); 104 exit(0);
105} 105}
106#else 106#else
107extern void show_usage(void) __attribute__ ((noreturn)); 107extern void bb_show_usage(void) __attribute__ ((noreturn));
108#endif 108#endif
109 109
110 110
@@ -298,7 +298,7 @@ int main(int argc, char *argv[])
298 exit_client(0); 298 exit_client(0);
299 break; 299 break;
300 default: 300 default:
301 show_usage(); 301 bb_show_usage();
302 } 302 }
303 } 303 }
304 304