X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=hostid.c;h=68a2cc65900e1823251b303e2c3aa93c34f36ffb;hb=14e9e9d1cab3ef5ed9910fadb5a327b5982c2049;hp=9e503e5984697cfbb497ab9190f2d26ea3489db7;hpb=e49d5ecbbe51718fa925b6890a735e5937cc2aa2;p=oweals%2Fbusybox.git diff --git a/hostid.c b/hostid.c index 9e503e598..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()); - exit(TRUE); + return EXIT_SUCCESS; }