#ifdef HAVE_CONFIG_H # include #endif #if defined( unix ) || defined( __CYGWIN__ ) # include // for gethostname() #endif #include int main() { #if defined( unix ) || defined( __CYGWIN__ ) char name[256]; gethostname( name, 256 ); printf("hostname = %s\n", name); #endif return 0; }