busybox/coreutils/hostid.c

27 lines
554 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Mini hostid implementation for busybox
*
* Copyright (C) 2000 Edward Betts <edward@debian.org>.
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
2003-03-19 14:43:01 +05:30
/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
#include "libbb.h"
/* This is a NOFORK applet. Be very careful! */
int hostid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
2008-07-05 14:48:54 +05:30
int hostid_main(int argc, char **argv UNUSED_PARAM)
{
2003-03-19 14:43:01 +05:30
if (argc > 1) {
bb_show_usage();
}
2006-10-27 04:51:47 +05:30
printf("%lx\n", gethostid());
2003-03-19 14:43:01 +05:30
return fflush(stdout);
}