mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 14:49:18 +02:00
12 lines
333 B
Text
12 lines
333 B
Text
|
|
(define-module (chibi posix)
|
|
(export open-input-fd open-output-fd pipe
|
|
delete-file link-file symbolic-link-file rename-file
|
|
directory-files create-directory delete-directory
|
|
current-seconds
|
|
exit
|
|
)
|
|
(import-immutable (scheme))
|
|
(include-shared "posix")
|
|
(include "posix.scm"))
|
|
|