aboutsummaryrefslogtreecommitdiff
path: root/terminal/termios.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-03-22 20:11:11 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-03-22 20:17:52 +0100
commitd46183860c1f3f10095e95023adcb79b1896ab0e (patch)
treedd331a0efe9777bfe84160139da1e39df3226b71 /terminal/termios.scm
parentAdd stuff to test.scm. (diff)
downloadcalp-d46183860c1f3f10095e95023adcb79b1896ab0e.tar.gz
calp-d46183860c1f3f10095e95023adcb79b1896ab0e.tar.xz
Move C and Scheme code into subdirs.
Diffstat (limited to 'terminal/termios.scm')
-rw-r--r--terminal/termios.scm11
1 files changed, 0 insertions, 11 deletions
diff --git a/terminal/termios.scm b/terminal/termios.scm
deleted file mode 100644
index b0ae585e..00000000
--- a/terminal/termios.scm
+++ /dev/null
@@ -1,11 +0,0 @@
-;;; Module for termios interaction from Guile,
-;;; Since that for some reason isn't built in.
-
-(define-module (terminal termios)
- #:export (c-lflags-disable! c-lflag-restore!))
-
-(define-public ECHO #x0000010)
-(define-public ICANON #x0000002)
-
-(setenv "LD_LIBRARY_PATH" (dirname (dirname (current-filename))))
-(load-extension "libtermios" "init_termios")