aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/port/gethostname.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/port/gethostname.c b/src/port/gethostname.c
deleted file mode 100644
index 51bdfc88be9..00000000000
--- a/src/port/gethostname.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * gethostname.c
- * gethostname using uname
- *
- * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
- * Portions Copyright (c) 1994, Regents of the University of California
- *
- * IDENTIFICATION
- * src/port/gethostname.c
- *
- *-------------------------------------------------------------------------
- */
-
-#include "c.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;
-}