summaryrefslogtreecommitdiff
path: root/hostname.c
blob: 39c7f87ecf913d4b89cc4887f37308b5abde2c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "substdio.h"
#include "subfd.h"
#include "readwrite.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);
}