X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fhostid.c;h=68a2cc65900e1823251b303e2c3aa93c34f36ffb;hb=eba8ed71f08f334bc94ac8eeedcd998fcdd05897;hp=f1010a65d524fa11301801018d22a7138478b3e6;hpb=27a804246af28c5d3d1f69d93049e3e21492bc48;p=oweals%2Fbusybox.git diff --git a/coreutils/hostid.c b/coreutils/hostid.c index f1010a65d..68a2cc659 100644 --- a/coreutils/hostid.c +++ b/coreutils/hostid.c @@ -20,11 +20,13 @@ * */ -#include "internal.h" #include +#include +#include +#include "busybox.h" extern int hostid_main(int argc, char **argv) { printf("%lx\n", gethostid()); - return(TRUE); + return EXIT_SUCCESS; }