Xinqi Bao's Git

Move components into dedicated subdirectory
[slstatus.git] / hostname.c
diff --git a/hostname.c b/hostname.c
deleted file mode 100644 (file)
index 0ad1f3b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include <err.h>
-#include <unistd.h>
-
-#include "util.h"
-
-const char *
-hostname(void)
-{
-       if (gethostname(buf, sizeof(buf)) == -1) {
-               warn("hostname");
-               return NULL;
-       }
-
-       return buf;
-}