--- nice.c | 8 ++++++++ renice.c | 9 +++++++++ 2 files changed, 17 insertions(+) diff --git a/nice.c b/nice.c index 3b9b9fb..d036e26 100644 --- a/nice.c +++ b/nice.c _AT_@ -7,6 +7,14 @@ #include "util.h" +#ifndef PRIO_MIN +#define PRIO_MIN -NZERO +#endif + +#ifndef PRIO_MAX +#define PRIO_MAX (NZERO-1) +#endif + static void usage(void) { diff --git a/renice.c b/renice.c index 38853b8..5159558 100644 --- a/renice.c +++ b/renice.c _AT_@ -7,6 +7,15 @@ #include "util.h" +#ifndef PRIO_MIN +#define PRIO_MIN -NZERO +#endif + +#ifndef PRIO_MAX +#define PRIO_MAX (NZERO-1) +#endif + + static int renice(int which, int who, long adj) { -- 2.1.4Received on Tue Dec 15 2015 - 15:59:27 CET
This archive was generated by hypermail 2.3.0 : Tue Dec 15 2015 - 16:24:14 CET