mirror of
https://github.com/pikami/slstatus.git
synced 2024-11-27 13:55:41 +00:00
7246dc4381
This brings us a lot more tidiness.
17 lines
246 B
C
17 lines
246 B
C
/* 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;
|
|
}
|