Subversion Repositories Tewi

Rev

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

Rev 213 Rev 215
Line 1... Line 1...
1
/* $Id: http.c 213 2024-10-02 17:45:40Z nishi $ */
1
/* $Id: http.c 215 2024-10-02 19:24:43Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "../config.h"
5
#include "../config.h"
6
 
6
 
Line 13... Line 13...
13
 
13
 
14
#include <stdbool.h>
14
#include <stdbool.h>
15
#include <stdlib.h>
15
#include <stdlib.h>
16
#include <string.h>
16
#include <string.h>
17
 
17
 
18
#if defined(__MINGW32__) || defined(_MSC_VER)
18
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__)
19
#include <winsock2.h>
19
#include <winsock2.h>
20
#else
20
#else
21
#ifdef USE_POLL
21
#ifdef USE_POLL
22
#ifdef __PPU__
22
#ifdef __PPU__
23
#include <net/poll.h>
23
#include <net/poll.h>