Fix spelling. s/maintainence/maintenance/
[oweals/busybox.git] / hostid.c
index f1010a65d524fa11301801018d22a7138478b3e6..76ab124ba7527a001f11a17ae899dee05689bf3a 100644 (file)
--- a/hostid.c
+++ b/hostid.c
  *
  */
 
-#include "internal.h"
+#warning This applet has moved to netkit-tiny.  After BusyBox 0.49, this
+#warning applet will be removed from BusyBox.  All maintenance efforts
+#warning should be done in the netkit-tiny source tree.
+
+#include "busybox.h"
 #include <stdio.h>
 
 extern int hostid_main(int argc, char **argv)
 {
        printf("%lx\n", gethostid());
-       return(TRUE);
+       return EXIT_SUCCESS;
 }