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