OpenBSD CVS

src/usr.bin/dc/


Click on a directory to enter that directory. Click on a file to display its revision history and to get a chance to display diffs between revisions.

Current directory: [local] / src / usr.bin / dc

Current tag: OPENBSD_3_7_BASE


File Rev. Age Author Last log entry
[BACK] Parent Directory        
[DIR] USD.doc/        
[TXT] Makefile  1.1   20 years  otto   A complete, BSD licensed rewrite of dc(1), using the bn(3) big number routines. ...
[TXT] bcode.c  1.26   19 years  otto   use volatile sig_atomic_t for vars set in signal handlers. spotted by deraadt@
[TXT] bcode.h  1.3   20 years  otto   Allow for more registers using a 2 byte index. This feature is enabled by supply...
[TXT] dc.1  1.19   19 years  otto   Implement command line evaluation of expressions by implementing the -e option. ...
[TXT] dc.c  1.6   19 years  otto   Implement command line evaluation of expressions by implementing the -e option. ...
[TXT] extern.h  1.2   20 years  otto   Duh, a stack machine without swap; implement GNU compatible 'r' (swap) operator....
[TXT] inout.c  1.9   19 years  otto   snprintf(buf, sizeof(buf), "%s", p) is silly, use strlcpy(). From Bruno Rohee.
[TXT] mem.c  1.4   19 years  otto   No need to free() after a failing realloc(), we're bailing out anyway. From Andr...
[TXT] stack.c  1.6   20 years  otto   Avoid a core dump on reading uninitiazed array locations.