k9core/src/hostid.c

12 lines
117 B
C
Raw Normal View History

2020-08-08 19:45:46 +00:00
#include <stdio.h>
#include <unistd.h>
2020-08-08 19:45:46 +00:00
int
main(void)
{
long id = gethostid();
printf("%lx\n", id);
2020-08-08 19:45:46 +00:00
return 0;
2020-08-08 19:45:46 +00:00
}