summaryrefslogtreecommitdiffstats
path: root/hostname.c
blob: 3dbae211bcb4a71ff1366c47cfc2070585442d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <unistd.h>
#include "substdio.h"
#include "subfd.h"
#include "exit.h"

char host[256];

void main()
{
 host[0] = 0; /* sigh */
 gethostname(host,sizeof(host));
 host[sizeof(host) - 1] = 0;
 substdio_puts(subfdoutsmall,host);
 substdio_puts(subfdoutsmall,"\n");
 substdio_flush(subfdoutsmall);
 _exit(0);
}