Make cin be static
[oweals/busybox.git] / hostid.c
index 9e503e5984697cfbb497ab9190f2d26ea3489db7..35a5859c4e3b59130159638cffe87b71b369a4a7 100644 (file)
--- a/hostid.c
+++ b/hostid.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 
 extern int hostid_main(int argc, char **argv)
 {
        printf("%lx\n", gethostid());
-       exit(TRUE);
+       return EXIT_SUCCESS;
 }