From 3906c8511e9648e494614f8d6f049df99468b0df Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 9 Jan 2015 12:21:51 -0800 Subject: [PATCH] You either have winsock or . There is no third choice. Change-Id: I8f1206f22798f747896dd53f3081cdfa4b1707c4 --- include/cutils/sockets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cutils/sockets.h b/include/cutils/sockets.h index daf43ec94..c47588c43 100644 --- a/include/cutils/sockets.h +++ b/include/cutils/sockets.h @@ -25,7 +25,7 @@ #ifdef HAVE_WINSOCK #include typedef int socklen_t; -#elif HAVE_SYS_SOCKET_H +#else #include #endif