Protect against a compile failure, as on HURD.
Reference:
https://buildd.debian.org/status/package.php?p=procps&suite=sid
top.c:2102:13: error: 'SIGRTMAX' undeclared (first use in this function)
memcpy(HHash_two, HHash_nul, sizeof(HHash_nul));
#endif
+#ifndef SIGRTMAX // not available on hurd, maybe others too
+#define SIGRTMAX 32
+#endif
// lastly, establish a robust signals environment
sigemptyset(&sa.sa_mask);
sa.sa_flags = SA_RESTART;