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