mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-06-08 03:45:04 +02:00
to have an SEXP_ prefix. Now all values from the headers are prefixed with either sexp_ or SEXP_, important for ease of embedding. "make USE_BOEHM=1" still works as an alias for "make SEXP_USE_BOEHM=1". Sorry if this patch breaks your code, it had to be done sooner or later.
12 lines
313 B
Text
12 lines
313 B
Text
|
|
(define-module (chibi posix)
|
|
(export open-input-fd open-output-fd
|
|
delete-file link-file symbolic-link rename-file
|
|
directory-files create-directory delete-directory
|
|
current-seconds
|
|
exit
|
|
)
|
|
(import (scheme))
|
|
(include-shared "posix")
|
|
(include "posix.scm"))
|
|
|