mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
Move libc replacement files from src/backend/port to src/port.
This commit is contained in:
24
src/port/gethostname.c
Normal file
24
src/port/gethostname.c
Normal file
@ -0,0 +1,24 @@
|
||||
/* $Id: gethostname.c,v 1.1 2002/07/18 04:13:59 momjian Exp $ */
|
||||
|
||||
#include "c.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sys/utsname.h>
|
||||
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user