mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 14:49:18 +02:00
10 lines
227 B
Text
10 lines
227 B
Text
|
|
(define-module (chibi stty)
|
|
(export stty with-stty TCSANOW TCSADRAIN TCSAFLUSH)
|
|
(import-immutable (scheme)
|
|
(srfi 33)
|
|
(srfi 69))
|
|
(include-shared "stty")
|
|
(include "stty.scm")
|
|
)
|
|
|