aboutsummaryrefslogtreecommitdiff
path: root/miscutils/bc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* build system: avoid full rebuild when EXTRAVERSION changesRon Yorston2024-02-161-0/+3
* Merge branch 'busybox' into mergeRon Yorston2023-07-131-2/+2
|\
| * Update applet size estimatesDenys Vlasenko2023-07-101-2/+2
* | Merge branch 'busybox' into mergeRon Yorston2022-10-121-1/+3
|\|
| * *: style fixDenys Vlasenko2022-08-301-1/+1
| * bc: hopefully fix bug 14956 (use-after-free)Denys Vlasenko2022-08-181-0/+2
* | Merge busybox into mergeRon Yorston2022-02-091-1/+1
|\|
| * *: slap on a few ALIGN* where appropriateDenys Vlasenko2022-02-061-1/+1
* | Merge branch 'busybox' into mergeRon Yorston2021-10-131-1/+1
|\|
| * *: add NOINLINEs where code noticeably shrinksDenys Vlasenko2021-10-101-1/+1
* | Merge branch 'busybox' into mergeRon Yorston2021-06-281-31/+44
|\|
| * *: more --help tweaksDenys Vlasenko2021-06-151-1/+1
| * bc: tweak overflow detection in a^bDenys Vlasenko2021-06-121-5/+8
| * bc: code shrink: combine init() and copy() where we canDenys Vlasenko2021-06-121-21/+16
| * bc: fix for mul overflow in scale calculation in a^bDenys Vlasenko2021-06-121-8/+23
* | Merge branch 'busybox' into mergeRon Yorston2021-05-141-2/+2
|\|
| * *: --help text tweaksDenys Vlasenko2021-04-141-2/+2
* | Merge branch 'busybox' into mergeRon Yorston2021-03-011-6/+58
|\|
| * bc: typo fix in commentDenys Vlasenko2021-02-261-1/+1
| * dc: more docs in --helpDenys Vlasenko2021-02-261-13/+14
| * dc: document what non-GNU commands doDenys Vlasenko2021-02-261-5/+5
| * bc/dc: fix length(0) and length(0.000nnn) resultDenys Vlasenko2021-02-261-4/+13
| * dc: correct --help textDenys Vlasenko2021-02-261-2/+44
* | bc: handle ^C in interactive modeRon Yorston2021-02-141-0/+13
* | bc: fix to build on WIN32 and enable in default configurationsRon Yorston2021-02-131-0/+2
|/
* libbb: introduce and use fputs_stdoutRon Yorston2021-02-031-1/+1
* bc: code shrinkDenys Vlasenko2021-01-061-2/+2
* bc: ^C on input line exits (unlike ^C during calculations, which does not)Denys Vlasenko2021-01-041-10/+10
* bc,dc: make BC_LINE_LENGTH/DC_LINE_LENGTH more compatible with GNUDenys Vlasenko2020-12-291-15/+23
* bc: placate gcc (it thinks 's' can be uninitialized here)Denys Vlasenko2020-12-291-8/+10
* bc: do not allocate line editing state until neededDenys Vlasenko2020-12-211-19/+18
* decrease padding: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nillyDenys Vlasenko2020-11-301-1/+1
* bc: placate a "defined but not used" warningDenys Vlasenko2020-06-241-0/+2
* bc: fix comparison bug, closes 12336Denys Vlasenko2019-11-231-1/+4
* bc: Add 'U' suffix in UINT_MAX preprocessor checkKang-Che Sung2019-09-121-2/+2
* dc: Parse error & fix out of bounds read in xc_program_printStringBrian Foley2019-09-051-2/+4
* dc: Fix segfault when executing strings generated using asciifyBrian Foley2019-09-051-2/+8
* dc: execute shouldn't pop if stack head is not a stringBrian Foley2019-09-051-1/+2
* libbb: reduce the overhead of single parameter bb_error_msg() callsJames Byrne2019-07-021-6/+6
* bc: placate compiler warningsDenys Vlasenko2019-06-081-2/+2
* bc: implement pass-by-reference code from upstreamDenys Vlasenko2019-01-251-86/+185
* bc: code shrinkDenys Vlasenko2019-01-091-14/+14
* bc: remove "empty expression" check/message, parsing fails in these cases anywayDenys Vlasenko2019-01-081-3/+4
* bc: zbc_parse_expr_empty_ok() is unused except by zbc_parse_expr(), fold it inDenys Vlasenko2019-01-081-36/+25
* bc: disallow invalid syntax like "{ print 1 print 2 }"Denys Vlasenko2019-01-081-15/+21
* sleep: support "inf"Denys Vlasenko2019-01-071-1/+0
* bc: shorten "limits" outputDenys Vlasenko2019-01-041-4/+1
* bc: formatting changes, added a FIXME comment, no logic changesDenys Vlasenko2019-01-041-5/+8
* bc: support void functions (GNU compat)Denys Vlasenko2019-01-041-19/+56
* dc: fit returning of stringDenys Vlasenko2019-01-041-5/+13