mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
8 lines
249 B
Scheme
8 lines
249 B
Scheme
|
|
(define-library (chibi stty)
|
|
(export stty with-stty with-raw-io
|
|
get-terminal-width get-terminal-dimensions
|
|
TCSANOW TCSADRAIN TCSAFLUSH)
|
|
(import (chibi) (srfi 69) (srfi 151))
|
|
(include-shared "stty")
|
|
(include "stty.scm"))
|