| Commit message (Expand) | Author | Age | Files | Lines |
* | Update applet size estimates | Denys Vlasenko | 2023-07-10 | 1 | -2/+2 |
* | *: style fix | Denys Vlasenko | 2022-08-30 | 1 | -1/+1 |
* | bc: hopefully fix bug 14956 (use-after-free) | Denys Vlasenko | 2022-08-18 | 1 | -0/+2 |
* | *: slap on a few ALIGN* where appropriate | Denys Vlasenko | 2022-02-06 | 1 | -1/+1 |
* | *: add NOINLINEs where code noticeably shrinks | Denys Vlasenko | 2021-10-10 | 1 | -1/+1 |
* | *: more --help tweaks | Denys Vlasenko | 2021-06-15 | 1 | -1/+1 |
* | bc: tweak overflow detection in a^b | Denys Vlasenko | 2021-06-12 | 1 | -5/+8 |
* | bc: code shrink: combine init() and copy() where we can | Denys Vlasenko | 2021-06-12 | 1 | -21/+16 |
* | bc: fix for mul overflow in scale calculation in a^b | Denys Vlasenko | 2021-06-12 | 1 | -8/+23 |
* | *: --help text tweaks | Denys Vlasenko | 2021-04-14 | 1 | -2/+2 |
* | bc: typo fix in comment | Denys Vlasenko | 2021-02-26 | 1 | -1/+1 |
* | dc: more docs in --help | Denys Vlasenko | 2021-02-26 | 1 | -13/+14 |
* | dc: document what non-GNU commands do | Denys Vlasenko | 2021-02-26 | 1 | -5/+5 |
* | bc/dc: fix length(0) and length(0.000nnn) result | Denys Vlasenko | 2021-02-26 | 1 | -4/+13 |
* | dc: correct --help text | Denys Vlasenko | 2021-02-26 | 1 | -2/+44 |
* | libbb: introduce and use fputs_stdout | Ron Yorston | 2021-02-03 | 1 | -1/+1 |
* | bc: code shrink | Denys Vlasenko | 2021-01-06 | 1 | -2/+2 |
* | bc: ^C on input line exits (unlike ^C during calculations, which does not) | Denys Vlasenko | 2021-01-04 | 1 | -10/+10 |
* | bc,dc: make BC_LINE_LENGTH/DC_LINE_LENGTH more compatible with GNU | Denys Vlasenko | 2020-12-29 | 1 | -15/+23 |
* | bc: placate gcc (it thinks 's' can be uninitialized here) | Denys Vlasenko | 2020-12-29 | 1 | -8/+10 |
* | bc: do not allocate line editing state until needed | Denys Vlasenko | 2020-12-21 | 1 | -19/+18 |
* | decrease padding: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nilly | Denys Vlasenko | 2020-11-30 | 1 | -1/+1 |
* | bc: placate a "defined but not used" warning | Denys Vlasenko | 2020-06-24 | 1 | -0/+2 |
* | bc: fix comparison bug, closes 12336 | Denys Vlasenko | 2019-11-23 | 1 | -1/+4 |
* | bc: Add 'U' suffix in UINT_MAX preprocessor check | Kang-Che Sung | 2019-09-12 | 1 | -2/+2 |
* | dc: Parse error & fix out of bounds read in xc_program_printString | Brian Foley | 2019-09-05 | 1 | -2/+4 |
* | dc: Fix segfault when executing strings generated using asciify | Brian Foley | 2019-09-05 | 1 | -2/+8 |
* | dc: execute shouldn't pop if stack head is not a string | Brian Foley | 2019-09-05 | 1 | -1/+2 |
* | libbb: reduce the overhead of single parameter bb_error_msg() calls | James Byrne | 2019-07-02 | 1 | -6/+6 |
* | bc: placate compiler warnings | Denys Vlasenko | 2019-06-08 | 1 | -2/+2 |
* | bc: implement pass-by-reference code from upstream | Denys Vlasenko | 2019-01-25 | 1 | -86/+185 |
* | bc: code shrink | Denys Vlasenko | 2019-01-09 | 1 | -14/+14 |
* | bc: remove "empty expression" check/message, parsing fails in these cases anyway | Denys Vlasenko | 2019-01-08 | 1 | -3/+4 |
* | bc: zbc_parse_expr_empty_ok() is unused except by zbc_parse_expr(), fold it in | Denys Vlasenko | 2019-01-08 | 1 | -36/+25 |
* | bc: disallow invalid syntax like "{ print 1 print 2 }" | Denys Vlasenko | 2019-01-08 | 1 | -15/+21 |
* | sleep: support "inf" | Denys Vlasenko | 2019-01-07 | 1 | -1/+0 |
* | bc: shorten "limits" output | Denys Vlasenko | 2019-01-04 | 1 | -4/+1 |
* | bc: formatting changes, added a FIXME comment, no logic changes | Denys Vlasenko | 2019-01-04 | 1 | -5/+8 |
* | bc: support void functions (GNU compat) | Denys Vlasenko | 2019-01-04 | 1 | -19/+56 |
* | dc: fit returning of string | Denys Vlasenko | 2019-01-04 | 1 | -5/+13 |
* | dc: fix '?' | Denys Vlasenko | 2019-01-04 | 1 | -9/+4 |
* | bc: eliminate struct BcInstPtr::results_len_before_call, it is redundant | Denys Vlasenko | 2019-01-04 | 1 | -10/+1 |
* | bc: add a palceholder comment for "void" return | Denys Vlasenko | 2019-01-04 | 1 | -11/+15 |
* | bc: remove extra div/0 test, remove test for string function parameter | Denys Vlasenko | 2019-01-04 | 1 | -8/+7 |
* | bc: fix "...; return}" to work, disallow "return ()" | Denys Vlasenko | 2019-01-03 | 1 | -8/+5 |
* | bc: make error line number also size_t, like everything else | Denys Vlasenko | 2019-01-02 | 1 | -6/+8 |
* | bc: speed up string printing, fix print "" | Denys Vlasenko | 2019-01-02 | 1 | -44/+22 |
* | bc: upstream fixes | Denys Vlasenko | 2019-01-01 | 1 | -83/+94 |
* | bc: in xc_read_line(), check ^C on NUL input bytes too | Denys Vlasenko | 2019-01-01 | 1 | -4/+6 |
* | bc: remove superfluous assigment | Denys Vlasenko | 2018-12-31 | 1 | -1/+2 |