I got this c++ writen in unix so that it is full of includes like this

#include <sys/types.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <netinet/in.h>
#include <unistd.h>
#include <netdb.h>

and if I am not mistaken then that are includes from good old unix. Is there way I can move this code to vc++ 6. I rater not want to do this by hand since it is few thousends of lines

Any ideas?

Icesoft