mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 14:49:18 +02:00
Exclude socket.h on Windows (unless using Cygwin)
This commit is contained in:
parent
584f74dbd9
commit
2f19dc69b1
1 changed files with 2 additions and 0 deletions
|
@ -65,7 +65,9 @@ typedef unsigned long size_t;
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
#if !(defined _WIN32) || defined(__CYGWIN__)
|
||||
#include <sys/socket.h>
|
||||
#endif
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <math.h>
|
||||
|
|
Loading…
Add table
Reference in a new issue