#
0767cd88 |
| 08-Oct-2019 |
kn <kn@openbsd.org> |
Replace "boolean.h" with <stdbool.h>
Be consistent with other programs in base and unify variable usage as follows to improve readability:
bool = (bool == No) ? Yes : No -> bool = !bool if (bool
Replace "boolean.h" with <stdbool.h>
Be consistent with other programs in base and unify variable usage as follows to improve readability:
bool = (bool == No) ? Yes : No -> bool = !bool if (bool == Yes) -> if (bool) if (bool == No) -> if (!bool) bool = Maybe -> bool = -1
OK millert
show more ...
|
#
73f7147e |
| 15-Mar-2017 |
deraadt <deraadt@openbsd.org> |
annoying whitespace die die die
|
#
69fa09f3 |
| 05-Feb-2010 |
otto <otto@openbsd.org> |
Header_lines always has the same value as y_procs; so zap the former; from Mark Lumsden.
|
#
2474f31f |
| 24-Sep-2008 |
chl <chl@openbsd.org> |
remove unused function
from tobias@
ok otto@ tobias@
|
#
b81dd664 |
| 10-Jun-2007 |
otto <otto@openbsd.org> |
clear to end of line at quit, needed for terms that do not restore content on quiting curses mode, like screen. found and tested by ray@
|
#
72d286b9 |
| 29-May-2007 |
otto <otto@openbsd.org> |
Instead of using hand-crafted redraws minimizing screen updates, use curses. Enables nice things like process highlighting without hurting the brain. ok deraadt@
|
#
325572ef |
| 04-Apr-2007 |
otto <otto@openbsd.org> |
garbage collect unused var ospeed; from Mark Lumsden
|
#
334e837e |
| 30-Mar-2007 |
otto <otto@openbsd.org> |
Remove some uneeded includes and declarations. -Wall is happy and no binary change. From Mark Lumsden.
|
#
f922335b |
| 09-May-2004 |
deraadt <deraadt@openbsd.org> |
spaces
|
#
caadece8 |
| 16-Jun-2003 |
millert <millert@openbsd.org> |
Add missing #include <err.h>
|
#
93edc92e |
| 16-Jun-2003 |
deraadt <deraadt@openbsd.org> |
use warnx(); millert ok
|
#
9eb74bcd |
| 13-Jun-2003 |
deraadt <deraadt@openbsd.org> |
readable code
|
#
2569d8cc |
| 12-Jun-2003 |
deraadt <deraadt@openbsd.org> |
knf
|
#
0e802f14 |
| 12-Jun-2003 |
pvalchev <pvalchev@openbsd.org> |
cleanup; ok deraadt
|
#
735f730e |
| 15-Jul-2002 |
deraadt <deraadt@openbsd.org> |
license change from William LeFebvre <wnl@groupsys.com>; top is now BSD licensed. this same license will show up on his next release as well.
|
#
169dc930 |
| 27-Jul-2001 |
deraadt <deraadt@openbsd.org> |
abort if stdout use ever produces EOF. before, top was one of those nasty processes that could spin if it's output tty went away in some cases.
|
#
6619a73d |
| 26-Apr-1999 |
downsj <downsj@openbsd.org> |
s/STDIN_FILENO/STDOUT_FILENO/ to match top distribution code, rohee@essi.fr.
|
#
4c7b8e4c |
| 02-Dec-1997 |
bitblt <bitblt@openbsd.org> |
watch those overflows
|
#
f03d03ac |
| 16-Sep-1997 |
weingart <weingart@openbsd.org> |
small terminals are dumb
|
#
86c38221 |
| 24-Aug-1997 |
millert <millert@openbsd.org> |
Fix compiler warnings.
|
#
33729aa2 |
| 22-Aug-1997 |
downsj <downsj@openbsd.org> |
First sweep. Prototype, type fixes, long fixes, mostly compiles with -Wall.
|
#
7cb5cbe1 |
| 14-Aug-1997 |
downsj <downsj@openbsd.org> |
top 3.4, with a few changes. Still needs more work.
|