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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/more.c b/util-linux/more.c
index 29984df8c..4812f1bc5 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -26,6 +26,7 @@
26#include <conio.h> 26#include <conio.h>
27#endif 27#endif
28#include "libbb.h" 28#include "libbb.h"
29#include "common_bufsiz.h"
29 30
30/* Support for FEATURE_USE_TERMIOS */ 31/* Support for FEATURE_USE_TERMIOS */
31 32
@@ -35,10 +36,10 @@ struct globals {
35 struct termios new_settings; 36 struct termios new_settings;
36} FIX_ALIASING; 37} FIX_ALIASING;
37#define G (*(struct globals*)bb_common_bufsiz1) 38#define G (*(struct globals*)bb_common_bufsiz1)
38#define INIT_G() ((void)0)
39#define initial_settings (G.initial_settings) 39#define initial_settings (G.initial_settings)
40#define new_settings (G.new_settings ) 40#define new_settings (G.new_settings )
41#define cin_fileno (G.cin_fileno ) 41#define cin_fileno (G.cin_fileno )
42#define INIT_G() do { setup_common_bufsiz(); } while (0)
42 43
43#define setTermSettings(fd, argp) \ 44#define setTermSettings(fd, argp) \
44do { \ 45do { \