/*=========================================================================*\ * Network compatibilization module: Unix version * * RCS ID: $Id$ \*=========================================================================*/ #ifndef UNIX_H_ #define UNIX_H_ /*=========================================================================*\ * BSD include files \*=========================================================================*/ /* error codes */ #include /* close function */ #include /* fnctnl function and associated constants */ #include /* struct timeval and CLK_TCK */ #include /* times function and struct tms */ #include /* struct sockaddr */ #include /* socket function */ #include /* gethostbyname and gethostbyaddr functions */ #include /* sigpipe handling */ #include /* IP stuff*/ #include #include #define COMPAT_FD int #define COMPAT_INVALIDFD (-1) #define compat_bind bind #define compat_connect connect #define compat_listen listen #define compat_close close #define compat_select select #endif /* UNIX_H_ */