/* $Id: gethostname.c,v 1.1 2002/07/18 04:13:59 momjian Exp $ */ #include "c.h" #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; }