summaryrefslogtreecommitdiff
path: root/miscutils/dc.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-31 03:33:50 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-31 03:33:50 +0000
commit15c0b725849875c718b168a26e13872e163cde4c (patch)
tree687a5425953ae362ef285c6c671f09a05d3fa3c0 /miscutils/dc.c
parentccdc13d306c0a8d2735488bf8e46503f7e567767 (diff)
downloadbusybox-w32-15c0b725849875c718b168a26e13872e163cde4c.tar.gz
busybox-w32-15c0b725849875c718b168a26e13872e163cde4c.tar.bz2
busybox-w32-15c0b725849875c718b168a26e13872e163cde4c.zip
Apply post 1.13.1 patches, bump to 1.13.21_13_2
Diffstat (limited to '')
-rw-r--r--miscutils/dc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c
index 6d4efa943..ff2bc3bce 100644
--- a/miscutils/dc.c
+++ b/miscutils/dc.c
@@ -19,7 +19,9 @@ enum { STACK_SIZE = (COMMON_BUFSIZE - offsetof(struct globals, stack)) / sizeof(
19#define pointer (G.pointer ) 19#define pointer (G.pointer )
20#define base (G.base ) 20#define base (G.base )
21#define stack (G.stack ) 21#define stack (G.stack )
22#define INIT_G() do { } while (0) 22#define INIT_G() do { \
23 base = 10; \
24} while (0)
23 25
24 26
25static void push(double a) 27static void push(double a)