X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fhostid.c;h=917dc223e3222db342d73243092d39c2f362627c;hb=138d71bc35b86964a4c2bd97f7f578edfead1925;hp=f8d5862ae23aab795ee78abb7bb4990810d8549d;hpb=3163821967821518cfa4c4315f775ec5301bb023;p=oweals%2Fbusybox.git diff --git a/coreutils/hostid.c b/coreutils/hostid.c index f8d5862ae..917dc223e 100644 --- a/coreutils/hostid.c +++ b/coreutils/hostid.c @@ -1,3 +1,4 @@ +/* vi: set sw=4 ts=4: */ /* * Mini hostid implementation for busybox * @@ -19,10 +20,19 @@ * */ -#include "internal.h" -#include +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ -extern int hostid_main(int argc, char **argv) { - printf ("%lx\n", gethostid()); - exit( TRUE); +#include +#include +#include "busybox.h" + +extern int hostid_main(int argc, char **argv) +{ + if (argc > 1) { + bb_show_usage(); + } + + bb_printf("%lx\n", gethostid()); + + bb_fflush_stdout_and_exit(EXIT_SUCCESS); }