1
0
Fork 0

Initial revision.

This commit is contained in:
curt 2001-03-22 04:19:12 +00:00
parent def805e9dc
commit 8aed19714a

View file

@ -0,0 +1,18 @@
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#if defined( unix ) || defined( __CYGWIN__ )
# include <unistd.h> // for gethostname()
#endif
#include <stdio.h>
int main() {
#if defined( unix ) || defined( __CYGWIN__ )
char name[256];
gethostname( name, 256 );
printf("hostname = %s\n", name);
#endif
return 0;
}