Make cin be static
[oweals/busybox.git] / hostid.c
index 3bf79de473fef8df7895754fc4d51147000fc9e5..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)
 {
-       if (argc > 1 && strcmp(argv[1], "--help") == 0)
-               usage(hostid_usage);
-
        printf("%lx\n", gethostid());
-       return(TRUE);
+       return EXIT_SUCCESS;
 }