From 6820631175868c277effa7cc05f9cb3197b72654 Mon Sep 17 00:00:00 2001 From: Aaron Marcher Date: Sun, 17 Sep 2017 16:18:17 +0200 Subject: Split into multiple files For multiple reasons the program is now split: - Make future porting to OpenBSD easier - Assign header includes to individiual functions - Make future program extensions easier - Recompile only changed parts --- hostname.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hostname.c (limited to 'hostname.c') diff --git a/hostname.c b/hostname.c new file mode 100644 index 0000000..23c5a16 --- /dev/null +++ b/hostname.c @@ -0,0 +1,15 @@ +#include +#include + +#include "util.h" + +const char * +hostname(void) +{ + if (gethostname(buf, sizeof(buf)) == -1) { + warn("hostname"); + return NULL; + } + + return buf; +} -- cgit v1.2.3