diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 18:24:47 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 19:45:01 +1000 |
commit | 1674f39266dda7929fc21e842554dec9ad43e5ea (patch) | |
tree | 53d3d7ddab49bce77de1df642f3b7490f30de630 /win32/termios.c | |
parent | 803ebf09045d48675938ab60c9721f7f22b97a06 (diff) | |
download | busybox-w32-1674f39266dda7929fc21e842554dec9ad43e5ea.tar.gz busybox-w32-1674f39266dda7929fc21e842554dec9ad43e5ea.tar.bz2 busybox-w32-1674f39266dda7929fc21e842554dec9ad43e5ea.zip |
win32: add termios stub so that it builds
Diffstat (limited to 'win32/termios.c')
-rw-r--r-- | win32/termios.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win32/termios.c b/win32/termios.c new file mode 100644 index 000000000..0aba48546 --- /dev/null +++ b/win32/termios.c | |||
@@ -0,0 +1,11 @@ | |||
1 | #include "busybox.h" | ||
2 | |||
3 | int tcsetattr(int fd UNUSED_PARAM, int mode UNUSED_PARAM, const struct termios *t UNUSED_PARAM) | ||
4 | { | ||
5 | return -1; | ||
6 | } | ||
7 | |||
8 | int tcgetattr(int fd UNUSED_PARAM, struct termios *t UNUSED_PARAM) | ||
9 | { | ||
10 | return -1; | ||
11 | } | ||