summaryrefslogtreecommitdiff
path: root/src/hostname.c
blob: 2794102435520a89b2c7f5234edb474bf2f9cd3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <unistd.h>

#include "buffer.h"
#include "exit.h"

char host[256];

int main()
{
  host[0] = 0; /* sigh */
  gethostname(host, sizeof(host));
  host[sizeof(host) - 1] = 0;
  buffer_puts(buffer_1small, host);
  buffer_puts(buffer_1small, "\n");
  buffer_flush(buffer_1small);
  _exit(0);
}