From ebdab982e914dfed2dc457c16b580172a9d9ec62 Mon Sep 17 00:00:00 2001
From: Stefan Neis <Stefan.Neis@t-online.de>
Date: Sun, 8 Aug 2004 21:03:51 +0000
Subject: [PATCH] Get rid of warning about select being undeclared on OS/2.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28715 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 src/unix/gsocket.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/unix/gsocket.cpp b/src/unix/gsocket.cpp
index 9713fde61e..6aaa755cf9 100644
--- a/src/unix/gsocket.cpp
+++ b/src/unix/gsocket.cpp
@@ -87,6 +87,10 @@ int _System bsdselect(int,
 int _System soclose(int);
 #  endif
 #endif
+#ifdef __EMX__
+#include <sys/select.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <stddef.h>
-- 
2.47.2