#if defined (HAVE_SOCKETS) #include int main() { printf("how did i get here?"); } #else void perror_1(); #include void perror_1 (string) char * string; { char *copy = "hello"; perror (copy); } int main(int argc, char ** argv) { return 0; } #endif