Fix socklen_t for libc5
[oweals/busybox.git] / hostid.c
index 9e503e5984697cfbb497ab9190f2d26ea3489db7..68a2cc65900e1823251b303e2c3aa93c34f36ffb 100644 (file)
--- a/hostid.c
+++ b/hostid.c
  *
  */
 
-#include "internal.h"
 #include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include "busybox.h"
 
 extern int hostid_main(int argc, char **argv)
 {
        printf("%lx\n", gethostid());
-       exit(TRUE);
+       return EXIT_SUCCESS;
 }