diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-10-20 10:14:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 18:14:59 +0100 |
commit | d8e181925123ab1fd3dfcad3b29325b2b0ff704b (patch) | |
tree | 1d03be3aea75f4e3a71d0edf2dc263ae250462ca /Modules/socketmodule.h | |
parent | d2cd5eef0c3fc0431bfe3fc24b4c020ebfcf8aad (diff) | |
download | cpython-git-d8e181925123ab1fd3dfcad3b29325b2b0ff704b.tar.gz |
bpo-41374: Remove obsolete exclusion of netinet/tcp.h on Cygwin (GH-21649)
Diffstat (limited to 'Modules/socketmodule.h')
-rw-r--r-- | Modules/socketmodule.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/socketmodule.h b/Modules/socketmodule.h index e4f375d5e8..aea599f0ee 100644 --- a/Modules/socketmodule.h +++ b/Modules/socketmodule.h @@ -8,9 +8,7 @@ # include <sys/socket.h> # endif # include <netinet/in.h> -# if !defined(__CYGWIN__) -# include <netinet/tcp.h> -# endif +# include <netinet/tcp.h> #else /* MS_WINDOWS */ # include <winsock2.h> |