1
0
Fork 0
flightgear/tests/test-gethostname.cxx

19 lines
328 B
C++
Raw Normal View History

2001-03-22 04:19:12 +00:00
#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;
}