k9core/src/hostname.c

12 lines
120 B
C

#include <stdio.h>
#include <unistd.h>
int
main(void)
{
char buf[64];
gethostname(buf, 64);
puts(buf);
return 0;
}