mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 06:39:17 +02:00
9 lines
247 B
Text
9 lines
247 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
|
|
current-seconds)
|
|
(import (scheme))
|
|
(include-shared "posix"))
|
|
|