Another update from Larry:
[oweals/busybox.git] / logname.c
index d9056c69da364cf37deb593b0eadd2896eaf2483..0924b24712628d4e644a472e2ac68ed8d4b497a7 100644 (file)
--- a/logname.c
+++ b/logname.c
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include "busybox.h"
 
 extern int logname_main(int argc, char **argv)
 {
        char user[9];
 
        if (argc > 1)
-               usage(logname_usage);
+               show_usage();
 
        my_getpwuid(user, geteuid());
        if (*user) {