2001-11-24 19:34:32 +00:00
|
|
|
#include <sys/types.h>
|
2003-11-06 20:47:59 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#else
|
2001-11-24 19:34:32 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2003-11-06 20:47:59 +00:00
|
|
|
#endif
|
2001-11-24 19:34:32 +00:00
|
|
|
|
2014-03-13 22:25:20 +00:00
|
|
|
int main() {
|
2001-11-24 19:34:32 +00:00
|
|
|
socklen_t t;
|
2014-03-13 22:25:20 +00:00
|
|
|
(void)t;
|
|
|
|
return 0;
|
2001-11-24 19:34:32 +00:00
|
|
|
}
|