Patch from Jeff Garzik marking a few 'getopt not needed' apps.
[oweals/busybox.git] / readlink.c
index 57f43d1740613e25290a32fe1411edfb4e226360..74196e11d93a8aa64b7def8abeab76dd46bbbb8b 100644 (file)
  *
  */
 
-#include "busybox.h"
 #include <errno.h>
 #include <unistd.h>
 #include <stdlib.h>
+#include "busybox.h"
 
 int readlink_main(int argc, char **argv)
 {
@@ -33,7 +33,7 @@ int readlink_main(int argc, char **argv)
        int bufsize = 128, size = 128;
 
        if (argc != 2)
-               usage(readlink_usage);
+               show_usage();
 
        while (bufsize < size + 1) {
                bufsize *= 2;