summaryrefslogtreecommitdiff
path: root/userspace/sys/sgtty.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-17 17:51:51 +0200
committerMiguel <m.i@gmx.at>2018-08-17 17:51:51 +0200
commit51d4dd040a291b62c648ff6cc0d7e0058cf4056f (patch)
tree142b7db302ba038dba526f99e5854cfc87b5f92e /userspace/sys/sgtty.h
parent006214f8c63189500b6ca55e0ef8f97eb35d47f5 (diff)
starting implicit function calls cleanup
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;
-
-};