1 #include <sys/time.h> 2 #include <sys/types.h> 3 #include <sys/socket.h> 4 #include <unistd.h> 5 #include <stdio.h> 6 main(int argc,char * argv[])7int main(int argc, char *argv[]) 8 { 9 10 #ifndef SHUT_RD 11 printf("#define SHUT_RD 0\n"); 12 #endif 13 14 #ifndef SHUT_WR 15 printf("#define SHUT_WR 1\n"); 16 #endif 17 18 #ifndef SHUT_RDWR 19 printf("#define SHUT_RDWR 2\n"); 20 #endif 21 22 return 0; 23 } 24 25