summaryrefslogtreecommitdiff
path: root/miscutils/dc.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/dc.c')
-rw-r--r--miscutils/dc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c
index 7348ed349..cb4b1e9b1 100644
--- a/miscutils/dc.c
+++ b/miscutils/dc.c
@@ -13,7 +13,7 @@ struct globals {
13 unsigned pointer; 13 unsigned pointer;
14 unsigned base; 14 unsigned base;
15 double stack[1]; 15 double stack[1];
16}; 16} FIX_ALIASING;
17enum { STACK_SIZE = (COMMON_BUFSIZE - offsetof(struct globals, stack)) / sizeof(double) }; 17enum { STACK_SIZE = (COMMON_BUFSIZE - offsetof(struct globals, stack)) / sizeof(double) };
18#define G (*(struct globals*)&bb_common_bufsiz1) 18#define G (*(struct globals*)&bb_common_bufsiz1)
19#define pointer (G.pointer ) 19#define pointer (G.pointer )