procps-3.1.2 --> procps-3.1.3
+uses /proc/*/wchan files when available
top: user selection
sysctl: add -e for Red Hat 8.0 boot scripts
sysctl: the obvious --help, -V, and --version
* in some proc cmdlines, a choice was offered twix space or null. */
static char *strim_0 (char *str)
{
- static const char ws[] = "\b\e\f\n\r\t\v\0133"; // \0133 is an escape
+ static const char ws[] = "\b\e\f\n\r\t\v\133"; // 0133 is an escape
char *p;
if ((p = strpbrk(str, ws))) *p = 0;
* in some proc cmdlines, a choice was offered twix space or null. */
static char *strim_1 (char *str)
{
- static const char ws[] = "\b\e\f\n\r\t\v\0133"; // \0133 is an escape
+ static const char ws[] = "\b\e\f\n\r\t\v\133"; // 0133 is an escape
char *p;
while (unlikely(p = strpbrk(str, ws))) *p = ' ';