diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c index 872b814..ced5149 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c @@ -8,7 +8,7 @@ /* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */ -enum { STACK_SIZE = sizeof(bb_common_bufsiz1) / sizeof(double) }; +enum { STACK_SIZE = COMMON_BUFSIZE / sizeof(double) }; #define stack ((double*)&bb_common_bufsiz1) static unsigned int pointer; |