mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-04 03:36:36 +02:00
(chibi io) Win32: Include <io.h> on port.c
Include <io.h> to use various POSIX-like functions.
This commit is contained in:
parent
960c962798
commit
d51a9e976b
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@
|
|||
#include <sys/sendfile.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <io.h>
|
||||
#endif
|
||||
|
||||
#define SEXP_LAST_CONTEXT_CHECK_LIMIT 256
|
||||
|
||||
#define sexp_cookie_ctx(vec) sexp_vector_ref((sexp)vec, SEXP_ZERO)
|
||||
|
|
Loading…
Add table
Reference in a new issue