VTK wrapper of vtkRenderWindow for wxPython. Tested on MSW so far.
[wxWidgets.git] / src / os2 / gsocket.c
index 4f53fa5fc06ab39f9c214ca24c0bd6b799bf612e..cccf54e43300c532072a9a1156a9034da566988c 100644 (file)
 #define BSD_SELECT // use Berkley Sockets select
 
 #include <assert.h>
-#include <ioctl.h>
 #include <sys\types.h>
-#include <socket.h>
 #include <utils.h>
 #include <sys\time.h>
 #include <in.h>
 #include <netdb.h>
 #include <nerrno.h>
+#if defined(__VISAGECPP__) && __IBMCPP__ < 400
+#include <socket.h>
+#include <ioctl.h>
 #include <select.h>
+#else
+#include <sys\socket.h>
+#include <sys\ioctl.h>
+#include <sys\select.h>
+#endif
 
 #include <string.h>
 #include <stdio.h>