Oops. Forgot the usleep.c file.
[oweals/busybox.git] / hostid.c
index f8d5862ae23aab795ee78abb7bb4990810d8549d..9e503e5984697cfbb497ab9190f2d26ea3489db7 100644 (file)
--- a/hostid.c
+++ b/hostid.c
@@ -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());
+       exit(TRUE);
 }