CVSROOT: /cvs Module name: src Changes by: k...@cvs.openbsd.org 2019/10/08 01:26:59
Modified files: usr.bin/top : commands.c display.c screen.c top.c Removed files: usr.bin/top : boolean.h Log message: 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