chmod: support -vcf if CONFIG_DESKTOP
[oweals/busybox.git] / coreutils / hostid.c
index cda96726ab0775239592eb27b187c3e227c41e94..65447aa635519d5df594e56ac7b680f58be67b33 100644 (file)
@@ -19,7 +19,7 @@ int hostid_main(int argc, char ATTRIBUTE_UNUSED **argv)
                bb_show_usage();
        }
 
-       bb_printf("%lx\n", gethostid());
+       printf("%lx\n", gethostid());
 
-       bb_fflush_stdout_and_exit(EXIT_SUCCESS);
+       fflush_stdout_and_exit(EXIT_SUCCESS);
 }