mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
11 lines
292 B
Text
11 lines
292 B
Text
|
|
(module (chibi stty)
|
|
(export stty with-stty with-raw-io
|
|
get-terminal-width get-terminal-dimensions
|
|
TCSANOW TCSADRAIN TCSAFLUSH)
|
|
(import-immutable (scheme)
|
|
(srfi 33)
|
|
(srfi 69))
|
|
(include-shared "stty")
|
|
(include "stty.scm"))
|
|
|