Subversion Repositories Tewi

Rev

Rev 257 | Rev 312 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 257 Rev 311
Line 1... Line 1...
1
/* $Id: config.c 257 2024-10-04 05:34:27Z nishi $ */
1
/* $Id: config.c 311 2024-10-13 01:23:22Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "tw_config.h"
5
#include "tw_config.h"
6
#include "tw_module.h"
6
#include "tw_module.h"
Line 13... Line 13...
13
 
13
 
14
#if !defined(_MSC_VER) && !defined(__BORLANDC__)
14
#if !defined(_MSC_VER) && !defined(__BORLANDC__)
15
#include <unistd.h>
15
#include <unistd.h>
16
#endif
16
#endif
17
 
17
 
18
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__)
18
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || (defined(__WATCOMC__) && !defined(__OS2__))
19
#ifdef USE_WINSOCK1
19
#ifdef USE_WINSOCK1
20
#include <winsock.h>
20
#include <winsock.h>
21
#else
21
#else
22
#include <winsock2.h>
22
#include <winsock2.h>
23
#endif
23
#endif