mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-04 03:36:36 +02:00
Win32: Include <io.h> on sexp.c
Use POSIX-like functions(open, read and write) from its compatibility library.
This commit is contained in:
parent
51f24ed36e
commit
960c962798
1 changed files with 4 additions and 0 deletions
4
sexp.c
4
sexp.c
|
@ -15,6 +15,10 @@ struct sexp_huff_entry {
|
||||||
#include "chibi/sexp-huff.h"
|
#include "chibi/sexp-huff.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <io.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
static int sexp_initialized_p = 0;
|
static int sexp_initialized_p = 0;
|
||||||
|
|
||||||
static const char sexp_separators[] = {
|
static const char sexp_separators[] = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue