X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=hostid.c;h=68a2cc65900e1823251b303e2c3aa93c34f36ffb;hb=8a9b2c6448e32f16e4b65dbd4927d9108c007acc;hp=f1010a65d524fa11301801018d22a7138478b3e6;hpb=b610615be9aedfac07d1e01f12575707fa3a227c;p=oweals%2Fbusybox.git diff --git a/hostid.c b/hostid.c index f1010a65d..68a2cc659 100644 --- a/hostid.c +++ b/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; }