From c258dc850098cbad43451ef0bbce181aea66c478 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 12 Dec 2011 23:54:21 +0100 Subject: [PATCH] include: Protect mstcpip.h against multiple inclusion. --- include/mstcpip.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/mstcpip.h b/include/mstcpip.h index 55fa542e1a4..147e135f19d 100644 --- a/include/mstcpip.h +++ b/include/mstcpip.h @@ -15,6 +15,8 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#ifndef __WINE_MSTCPIP_H +#define __WINE_MSTCPIP_H struct tcp_keepalive { @@ -60,3 +62,5 @@ struct tcp_keepalive #define WS_RCVALL_SOCKETLEVELONLY 2 #endif /* USE_WS_PREFIX */ + +#endif /* __WINE_MSTCPIP_H */