Comment on kernel stuff
[oweals/busybox.git] / coreutils / hostid.c
index f8d5862ae23aab795ee78abb7bb4990810d8549d..f1010a65d524fa11301801018d22a7138478b3e6 100644 (file)
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 /*
  * Mini hostid implementation for busybox
  *
@@ -22,7 +23,8 @@
 #include "internal.h"
 #include <stdio.h>
 
-extern int hostid_main(int argc, char **argv) {
-       printf ("%lx\n", gethostid());
-       exit( TRUE);
+extern int hostid_main(int argc, char **argv)
+{
+       printf("%lx\n", gethostid());
+       return(TRUE);
 }