aboutsummaryrefslogtreecommitdiff
path: root/slstatus/components/hostname.c
diff options
context:
space:
mode:
Diffstat (limited to 'slstatus/components/hostname.c')
-rw-r--r--slstatus/components/hostname.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/slstatus/components/hostname.c b/slstatus/components/hostname.c
deleted file mode 100644
index 23da677..0000000
--- a/slstatus/components/hostname.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include <stdio.h>
-#include <unistd.h>
-
-#include "../util.h"
-
-const char *
-hostname(void)
-{
- if (gethostname(buf, sizeof(buf)) < 0) {
- warn("gethostbyname:");
- return NULL;
- }
-
- return buf;
-}