Reorganise, make it just one function, remove -v option it didnt work properly anyway...
[oweals/busybox.git] / coreutils / whoami.c
index 398e37315a8277a3aa1423dba34c9b05514b24f7..c3b1140e6c940ddd40460eb7900cb5fcf90bf11d 100644 (file)
  *
  */
 
-#include "busybox.h"
+/* getopt not needed */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include "busybox.h"
 
 extern int whoami_main(int argc, char **argv)
 {
@@ -31,7 +33,7 @@ extern int whoami_main(int argc, char **argv)
        uid_t uid = geteuid();
 
        if (argc > 1)
-               usage(whoami_usage);
+               show_usage();
 
        my_getpwuid(user, uid);
        if (*user) {