aboutsummaryrefslogtreecommitdiff
path: root/win32/termios.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-04-05 20:31:13 +0100
committerRon Yorston <rmy@pobox.com>2018-04-05 20:31:13 +0100
commitf7c592f6d832602a628008d598a3aa130d89de4d (patch)
tree5b771c3f51bfb51e52f3736f89f7b4b195e13f82 /win32/termios.h
parent3f18c23c67ea8614f1901265d100d3e49bc7491e (diff)
downloadbusybox-w32-f7c592f6d832602a628008d598a3aa130d89de4d.tar.gz
busybox-w32-f7c592f6d832602a628008d598a3aa130d89de4d.tar.bz2
busybox-w32-f7c592f6d832602a628008d598a3aa130d89de4d.zip
win32: exclude termios code
The code to manipulate terminal settings serves no purpose in WIN32. Use conditional compilation to exclude much of it.
Diffstat (limited to 'win32/termios.h')
-rw-r--r--win32/termios.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/win32/termios.h b/win32/termios.h
index 011a37eb9..c98d414f3 100644
--- a/win32/termios.h
+++ b/win32/termios.h
@@ -123,7 +123,3 @@ struct winsize {
123 unsigned short ws_row, ws_col; 123 unsigned short ws_row, ws_col;
124 unsigned short ws_xpixel, ws_ypixel; 124 unsigned short ws_xpixel, ws_ypixel;
125}; 125};
126
127int tcflush(int fd, int queue_selector);
128int tcgetattr(int fd, struct termios *t);
129int tcsetattr(int fd, int mode, const struct termios *t);