summaryrefslogtreecommitdiff
path: root/userspace/sys/sgtty.h
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/sys/sgtty.h')
-rw-r--r--userspace/sys/sgtty.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/userspace/sys/sgtty.h b/userspace/sys/sgtty.h
deleted file mode 100644
index 24d0218..0000000
--- a/userspace/sys/sgtty.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#define TIOCFLUSH 0x01
-#define RAW 0x02
-#define CBREAK 0x04
-#define XTABS 0x08
-#define CRMOD 0x10
-#define ECHO 0x20
-
-// TODO: same struct should be used for /terminal/terminal.h ?
-struct sgttyb{
-
- int sg_ospeed;
- int sg_ispeed;
-
- char sg_erase;
- char sg_kill;
-
- int sg_flags;
-
-};