From 061710370c6e02b87f5e366310d41f99ae73e5df Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Mon, 15 Jan 2018 21:19:59 -0600 Subject: [PATCH] cygwin: make completely visible from While POSIX mandates that certain socket types shall be defined by the inclusing of , it also says that this header may also make visible all symbols. Glibc does this, and without out it, some packages end up requiring an additional #include . Signed-off-by: Yaakov Selkowitz --- winsup/cygwin/include/cygwin/in.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/include/cygwin/in.h b/winsup/cygwin/include/cygwin/in.h index 9d7331d30..42b776653 100644 --- a/winsup/cygwin/include/cygwin/in.h +++ b/winsup/cygwin/include/cygwin/in.h @@ -18,7 +18,7 @@ #ifndef _CYGWIN_IN_H #define _CYGWIN_IN_H -#include +#include #ifndef _IN_ADDR_T_DECLARED typedef __uint32_t in_addr_t;