#include #include #include #include int __gethostname(char *name, size_t len) { struct utsname uts; if (name == NULL) { errno = EINVAL; return -1; } if (__uname(&uts) == -1) return -1; if (strlen(uts.nodename)+1 > len) { errno = EINVAL; return -1; } strcpy(name, uts.nodename); return 0; } #include #ifdef weak_alias weak_alias (__gethostname, gethostname); #endif