aboutsummaryrefslogtreecommitdiff
path: root/util-linux/more.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/more.c')
-rw-r--r--util-linux/more.c2
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) \
42do { \ 42do { \