URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [libnetworking/] [libc/] [gethostname.c] - Rev 507
Go to most recent revision | Compare with Previous | Blame | View Log
/* * $Id: gethostname.c,v 1.2 2001-09-27 12:01:53 chris Exp $ */ #include "config.h" /* * Solaris doesn't include the gethostname call by default. */ #include <sys/utsname.h> #include <sys/systeminfo.h> #include <netdb.h> /* * PUBLIC: #ifndef HAVE_GETHOSTNAME * PUBLIC: int gethostname __P((char *, int)); * PUBLIC: #endif */ int gethostname(host, len) char *host; int len; { return (sysinfo(SI_HOSTNAME, host, len) == -1 ? -1 : 0); }
Go to most recent revision | Compare with Previous | Blame | View Log