sort is good to go.
[oweals/busybox.git] / rmmod.c
diff --git a/rmmod.c b/rmmod.c
index 7d3eac51ee1d58f36e9544d1f8f758716ca1b20f..6b15b48bbe0323e98d6f5aca2667d1e018e386d7 100644 (file)
--- a/rmmod.c
+++ b/rmmod.c
@@ -29,7 +29,7 @@
 
 
 /* And the system call of the day is...  */
-extern int delete_module (const char * __name);
+_syscall1(int, delete_module, const char *, name)
 
 
 static const char rmmod_usage[] =
@@ -51,7 +51,7 @@ extern int rmmod_main(int argc, char **argv)
        while (*(++(*argv))) {
            switch (**argv) {
            case 'a':
-               /* Unload _all_ modules via NULL delete_module() call */
+               /* Unload _all_ unused modules via NULL delete_module() call */
                if (delete_module(NULL)) {
                    perror("rmmod");
                    exit( FALSE);