From: Andrew M. Kuchling Date: Fri, 31 Mar 2000 17:24:30 +0000 (+0000) Subject: Add '#include ' X-Git-Tag: v1.6a1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=52a644cbda06985def76b077e541a88d1f60e61d;p=python Add '#include ' "man tcp" on Solaris says that TCP_NODELAY is defined in netinet/tcp.h, and the Open Groups Unix98 spec agrees (http://www.opengroup.org/onlinepubs/009619199/ninettcp.htm). --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 9798deaac0..a6f46648d9 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -163,6 +163,7 @@ int shutdown( int, int ); #include #include #include +#include /* Headers needed for inet_ntoa() and inet_addr() */ #ifdef __BEOS__