mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 06:39:17 +02:00
8 lines
221 B
Text
8 lines
221 B
Text
|
|
(define-module (chibi posix)
|
|
(export open-input-fd open-output-fd
|
|
delete-file link-file symbolic-link rename-file
|
|
create-directory delete-directory)
|
|
(import (scheme))
|
|
(include-shared "posix"))
|
|
|