*** empty log message ***

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
1999-11-03 05:54:29 +00:00
parent d21895aec4
commit 9ac6ff7b80
2 changed files with 10 additions and 4 deletions

View File

@@ -14,15 +14,21 @@
#define BSD_SELECT // use Berkley Sockets select
#include <assert.h>
#include <sys\ioctl.h>
#include <sys\types.h>
#include <sys\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>