Age | Commit message (Expand) | Author |
2010-05-15 | normalize() cannot be inline and extern at the same time; prompted by | Otto Moerbeek |
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt |
2009-09-06 | check for unitialized elements when accessing an array; from Simon Kellner. | Otto Moerbeek |
2008-11-24 | although there's no EOF condition defined for the handling of '?', | Otto Moerbeek |
2008-04-28 | plug three leaks, one reported and fixed by Andreas Gunnarsson in PR 5802, | Otto Moerbeek |
2008-04-26 | use correct printf format for size_t (debug only code) | Otto Moerbeek |
2007-09-02 | more malloc(n * m) -> calloc(n, m); from Igor Zinovik | Theo de Raadt |
2006-01-19 | delint: check value against UINT_MAX before casting to u_int; while | Otto Moerbeek |
2006-01-16 | delint; use size_t as stack size and ssize_t as stack pointer. | Otto Moerbeek |
2006-01-15 | delint; index is a global symbol, so rename some locals to avoid | Otto Moerbeek |
2006-01-15 | delint wrt return values, including some missing BN return | Otto Moerbeek |
2005-09-25 | Fix wrong normalization in compare. From andreas@ | Otto Moerbeek |
2005-04-02 | - Fix raise for negative exponents (noted by naddy@) | Otto Moerbeek |
2005-03-28 | spacing | Theo de Raadt |
2005-03-27 | Make call stack auto-growing, instead of fixed size. Enables much deeper | Otto Moerbeek |
2004-12-01 | use volatile sig_atomic_t for vars set in signal handlers. spotted by deraadt@ | Otto Moerbeek |
2004-12-01 | Fix stop condition for sqrt. Due to the fact that we're doing Newton | Otto Moerbeek |
2004-10-18 | Implement command line evaluation of expressions by implementing the -e option. | Otto Moerbeek |
2004-09-14 | ARGSUSED before signal handler with unused signo | Theo de Raadt |
2004-02-11 | Make flag set in signal handler volatile | Otto Moerbeek |
2004-01-20 | duplicated entry; evarts@amazon.com | Theo de Raadt |
2003-12-19 | Do something sensible on ^C: unwind stack and be ready for new input. | Otto Moerbeek |
2003-12-02 | Fix a max recursion off-by-one. | Otto Moerbeek |
2003-12-01 | Allow for more registers using a 2 byte index. This feature is | Otto Moerbeek |
2003-11-17 | A basic stack operation that is missing from the original dc (and | Otto Moerbeek |
2003-11-14 | Implement new boolean operations 'N' (not), 'G' (equals), '(' (less) | Otto Moerbeek |
2003-11-09 | Flush after 'n' operator. | Otto Moerbeek |
2003-11-06 | Implement non-portable extension # (comment), n (print w/o newline), | Otto Moerbeek |
2003-11-04 | Duh, a stack machine without swap; implement GNU compatible 'r' | Otto Moerbeek |
2003-10-22 | Make J operator handle extended comparisons correctly. | Otto Moerbeek |
2003-10-22 | Implement extended comparison operators, to allow for an if ... else construct | Otto Moerbeek |
2003-10-18 | #ifdef debug code | Otto Moerbeek |
2003-10-18 | o Implement new J (jump) and M (mark) operators. The J operator | Otto Moerbeek |
2003-10-11 | Division and modulus operator (~). From hugh@. | Otto Moerbeek |
2003-09-30 | Flush stdout after P operator. Improves interaction with bc(1). | Otto Moerbeek |
2003-09-28 | Fix error check for array store operator. | Otto Moerbeek |
2003-09-22 | Make registers contain zero initially. Needed for new bc(1) and original dc(1) | Otto Moerbeek |
2003-09-20 | Remove bogus comment. | Otto Moerbeek |
2003-09-19 | spaces | Theo de Raadt |
2003-09-19 | spaces | Theo de Raadt |
2003-09-19 | A complete, BSD licensed rewrite of dc(1), using the bn(3) big number routines. | Otto Moerbeek |