diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-21 18:18:48 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-21 18:18:48 +0200 |
commit | 47cfbf32fd66563f8c4e09ad6cced6abfbe2fad5 (patch) | |
tree | 05127e986021176649f2dd660a92ef8b8e107e92 /util-linux/more.c | |
parent | e6a2f4cc5a47d3022bdf5ca2cacbaa5a8c5baf7a (diff) | |
download | busybox-w32-47cfbf32fd66563f8c4e09ad6cced6abfbe2fad5.tar.gz busybox-w32-47cfbf32fd66563f8c4e09ad6cced6abfbe2fad5.tar.bz2 busybox-w32-47cfbf32fd66563f8c4e09ad6cced6abfbe2fad5.zip |
*: add most of the required setup_common_bufsiz() calls
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/more.c')
-rw-r--r-- | util-linux/more.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 58be3ac3b..95cbdd994 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -33,10 +33,10 @@ struct globals { | |||
33 | struct termios new_settings; | 33 | struct termios new_settings; |
34 | } FIX_ALIASING; | 34 | } FIX_ALIASING; |
35 | #define G (*(struct globals*)bb_common_bufsiz1) | 35 | #define G (*(struct globals*)bb_common_bufsiz1) |
36 | #define INIT_G() ((void)0) | ||
37 | #define initial_settings (G.initial_settings) | 36 | #define initial_settings (G.initial_settings) |
38 | #define new_settings (G.new_settings ) | 37 | #define new_settings (G.new_settings ) |
39 | #define cin_fileno (G.cin_fileno ) | 38 | #define cin_fileno (G.cin_fileno ) |
39 | #define INIT_G() do { setup_common_bufsiz(); } while (0) | ||
40 | 40 | ||
41 | #define setTermSettings(fd, argp) \ | 41 | #define setTermSettings(fd, argp) \ |
42 | do { \ | 42 | do { \ |