diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-12-27 22:02:14 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-12-27 22:02:14 +0100 |
commit | aa6db9642e8044a14ccffa31b4933463d9c02ff0 (patch) | |
tree | 85c1a1308c557aa1360715db01520591fabcd171 /src | |
parent | 2bb00705bbf9cfc59f6011bb0214e5eddba13ea8 (diff) |
curl: remove superfluous include file
The <netinet/tcp.h> is a leftover from the past when TCP socket options
were set in this file. This include causes build issues on AIX 4.3.
Reported-by: Kim Minjoong
Closes #1178
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_operate.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 54a11f653..26662aec5 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -35,10 +35,6 @@ # include <locale.h> #endif -#ifdef HAVE_NETINET_TCP_H -# include <netinet/tcp.h> -#endif - #ifdef __VMS # include <fabdef.h> #endif |