File: hostname.c

package info (click to toggle)
qmail 1.03-47
  • links: PTS
  • area: non-free
  • in suites: lenny
  • size: 4,232 kB
  • ctags: 2,091
  • sloc: ansic: 16,302; makefile: 2,444; sh: 771; perl: 463
file content (17 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (11)
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);
}