X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=uname.c;h=f7e2291a8f8cc159201568da24bc96a8895d96c2;hb=303dd28bb0120c8b12c886cadb2d25d1b8fea08b;hp=deaffd7000f5a268ea593ee04333484a0aa436e8;hpb=ed3ef50c233ffb1b50ea0e7382a8e60b86491009;p=oweals%2Fbusybox.git diff --git a/uname.c b/uname.c index deaffd700..f7e2291a8 100644 --- a/uname.c +++ b/uname.c @@ -31,15 +31,16 @@ /* Busyboxed by Erik Andersen */ -#include "busybox.h" #include #include +#include #include #include #if defined (HAVE_SYSINFO) && defined (HAVE_SYS_SYSTEMINFO_H) # include #endif +#include "busybox.h" static void print_element(unsigned int mask, char *element); @@ -106,7 +107,7 @@ int uname_main(int argc, char **argv) PRINT_MACHINE); break; default: - usage(uname_usage); + show_usage(); } } }