diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/nmeter.c | 4 | ||||
-rw-r--r-- | miscutils/runlevel.c | 4 | ||||
-rw-r--r-- | miscutils/setsid.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/miscutils/nmeter.c b/miscutils/nmeter.c index 0b499034e..c96ce5da5 100644 --- a/miscutils/nmeter.c +++ b/miscutils/nmeter.c | |||
@@ -729,8 +729,8 @@ static init_func* init_functions[] = { | |||
729 | init_cr, | 729 | init_cr, |
730 | }; | 730 | }; |
731 | 731 | ||
732 | int nmeter_main(int argc, char* argv[]); | 732 | int nmeter_main(int argc, char **argv); |
733 | int nmeter_main(int argc, char* argv[]) | 733 | int nmeter_main(int argc, char **argv) |
734 | { | 734 | { |
735 | char buf[32]; | 735 | char buf[32]; |
736 | s_stat *first = NULL; | 736 | s_stat *first = NULL; |
diff --git a/miscutils/runlevel.c b/miscutils/runlevel.c index 23714f7c7..df2da2b1f 100644 --- a/miscutils/runlevel.c +++ b/miscutils/runlevel.c | |||
@@ -18,8 +18,8 @@ | |||
18 | #include <time.h> | 18 | #include <time.h> |
19 | #include <stdlib.h> | 19 | #include <stdlib.h> |
20 | 20 | ||
21 | int runlevel_main(int argc, char *argv[]); | 21 | int runlevel_main(int argc, char **argv); |
22 | int runlevel_main(int argc, char *argv[]) | 22 | int runlevel_main(int argc, char **argv) |
23 | { | 23 | { |
24 | struct utmp *ut; | 24 | struct utmp *ut; |
25 | char prev; | 25 | char prev; |
diff --git a/miscutils/setsid.c b/miscutils/setsid.c index c878f524b..1abb54530 100644 --- a/miscutils/setsid.c +++ b/miscutils/setsid.c | |||
@@ -16,8 +16,8 @@ | |||
16 | 16 | ||
17 | #include "busybox.h" | 17 | #include "busybox.h" |
18 | 18 | ||
19 | int setsid_main(int argc, char *argv[]); | 19 | int setsid_main(int argc, char **argv); |
20 | int setsid_main(int argc, char *argv[]) | 20 | int setsid_main(int argc, char **argv) |
21 | { | 21 | { |
22 | if (argc < 2) | 22 | if (argc < 2) |
23 | bb_show_usage(); | 23 | bb_show_usage(); |