diff options
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r-- | libbb/xfuncs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 8ef305ba0..e2aee136c 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -289,3 +289,8 @@ int FAST_FUNC get_terminal_width_height(int fd, unsigned *width, unsigned *heigh | |||
289 | 289 | ||
290 | return ret; | 290 | return ret; |
291 | } | 291 | } |
292 | |||
293 | int FAST_FUNC tcsetattr_stdin_TCSANOW(const struct termios *tp) | ||
294 | { | ||
295 | return tcsetattr(STDIN_FILENO, TCSANOW, tp); | ||
296 | } | ||