Added some more '/* getopt not needed */' lines.
[oweals/busybox.git] / touch.c
diff --git a/touch.c b/touch.c
index e174baa47bb06bd1823987a3344e231fc360c46a..1718da71e28fb2d649d83f65d417b90f2633e8a9 100644 (file)
--- a/touch.c
+++ b/touch.c
@@ -22,7 +22,6 @@
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
 #include <sys/types.h>
 #include <fcntl.h>
@@ -30,6 +29,7 @@
 #include <errno.h>
 #include <unistd.h>
 #include <stdlib.h>
+#include "busybox.h"
 
 extern int touch_main(int argc, char **argv)
 {
@@ -44,13 +44,13 @@ extern int touch_main(int argc, char **argv)
                                create = FALSE;
                                break;
                        default:
-                               usage(touch_usage);
+                               show_usage();
                        }
                }
        }
 
        if (argc < 1) {
-               usage(touch_usage);
+               show_usage();
        }
 
        while (argc > 0) {