summaryrefslogtreecommitdiff
path: root/sqmail-4.3.07/src/hostname.c
blob: 6a553097ee69c028e2c7eff99c89e43a2ef98eb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
}