URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [sysdeps/] [linux/] [common/] [gethstnm.c] - Rev 1765
Compare with Previous | Blame | View Log
#include <string.h> #include <unistd.h> #include <sys/utsname.h> #include <errno.h> int gethostname(char *name, size_t len) { struct utsname uts; if (name == NULL) { __set_errno(EINVAL); return -1; } if (uname(&uts) == -1) return -1; if (strlen(uts.nodename)+1 > len) { __set_errno(EINVAL); return -1; } strcpy(name, uts.nodename); return 0; }