/* $Id: gethostname.c,v 1.2 1997/12/19 13:34:26 scrappy Exp $ */ #include #include #include int gethostname(char *name, int namelen) { static struct utsname mname; static int called = 0; if (!called) { called++; uname(&mname); } strncpy(name, mname.nodename, (SYS_NMLN < namelen ? SYS_NMLN : namelen)); return (0); }