This one should be able to deal with the USAGE macros a little
[oweals/busybox.git] / loadacm.c
index 345a2773cf147db374cf375f6413201d5afd67e1..81b973b026f8dc6b88f131f2ae2c5bf237df4cdd 100644 (file)
--- a/loadacm.c
+++ b/loadacm.c
@@ -7,7 +7,6 @@
  * Peter Novodvorsky <petya@logic.ru>
  */
 
-#include "busybox.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <memory.h>
 #include <assert.h>
 #include <errno.h>
 #include <signal.h>
+#include <sys/kd.h>
 #include <sys/types.h>
 #include <sys/ioctl.h>
-#include <sys/kd.h>
+#include "busybox.h"
 
 typedef unsigned short unicode;
 
@@ -34,7 +34,7 @@ int loadacm_main(int argc, char **argv)
        int fd;
 
        if (argc>=2 && *argv[1]=='-') {
-               usage(loadacm_usage);
+               show_usage();
        }
 
        fd = open("/dev/tty", O_RDWR);