summaryrefslogtreecommitdiff
path: root/fedora/.local/bin/htop-vim/generic/hostname.c
diff options
context:
space:
mode:
Diffstat (limited to 'fedora/.local/bin/htop-vim/generic/hostname.c')
-rw-r--r--fedora/.local/bin/htop-vim/generic/hostname.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/fedora/.local/bin/htop-vim/generic/hostname.c b/fedora/.local/bin/htop-vim/generic/hostname.c
deleted file mode 100644
index 69a4146..0000000
--- a/fedora/.local/bin/htop-vim/generic/hostname.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-htop - generic/hostname.c
-(C) 2021 htop dev team
-Released under the GNU GPLv2+, see the COPYING file
-in the source distribution for its full text.
-*/
-#include "config.h" // IWYU pragma: keep
-
-#include "generic/hostname.h"
-
-#include <unistd.h>
-
-
-void Generic_hostname(char* buffer, size_t size) {
- gethostname(buffer, size - 1);
- buffer[size - 1] = '\0';
-}