Improved port of ifconfig... smaller and with more features.
[oweals/busybox.git] / rmmod.c
diff --git a/rmmod.c b/rmmod.c
index 3a66af87ad127f2cd21558b3815c9593b7e579eb..aab32612352c9cdb980a6fb2932ffbf869de4c1b 100644 (file)
--- a/rmmod.c
+++ b/rmmod.c
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
 #include <errno.h>
 #include <unistd.h>
 #include <stdlib.h>
 #include <sys/syscall.h>
 #include <linux/unistd.h>
+#include "busybox.h"
 #define __LIBRARY__
 
 
@@ -39,7 +39,7 @@ extern int rmmod_main(int argc, char **argv)
 {
        int ret = EXIT_SUCCESS;
        if (argc <= 1) {
-               usage(rmmod_usage);
+               show_usage();
        }
 
        /* Parse any options */
@@ -52,7 +52,7 @@ extern int rmmod_main(int argc, char **argv)
                                        perror_msg_and_die("rmmod");
                                return EXIT_SUCCESS;
                        default:
-                               usage(rmmod_usage);
+                               show_usage();
                        }
                }
        }