> Date: Mon, 16 Sep 2019 18:08:23 -0700 > From: Palmer Dabbelt <[email protected]> > Cc: Palmer Dabbelt <[email protected]> > > +#ifdef HAVE_UNISTD_H > + if (nice(0) == nice(arg_nice)) > +#endif
This is not portable enough, because having unistd.h doesn't yet mean you have 'nice'. E.g., MinGW, which produces native MS-Windows programs, does have unistd.h, but no 'nice'. _______________________________________________ Bug-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-make
