Major coreutils update.

This commit is contained in:
Manuel Novoa III
2003-03-19 09:13:01 +00:00
parent e01f9662a5
commit cad5364599
295 changed files with 6944 additions and 5570 deletions

View File

@@ -20,13 +20,19 @@
*
*/
#include <stdio.h>
/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
#include <stdlib.h>
#include <unistd.h>
#include "busybox.h"
extern int hostid_main(int argc, char **argv)
{
printf("%lx\n", gethostid());
return EXIT_SUCCESS;
if (argc > 1) {
bb_show_usage();
}
bb_printf("%lx\n", gethostid());
bb_fflush_stdout_and_exit(EXIT_SUCCESS);
}