From: Paul Eggert Date: Tue, 26 Apr 2005 16:41:59 +0000 (+0000) Subject: Remove posixver.h and its uses. X-Git-Tag: CPPI-1_12~934 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6318338140fe1b5ce7682bf6b04121866fd0d0e;p=thirdparty%2Fcoreutils.git Remove posixver.h and its uses. (main): Always support -NUM option. --- diff --git a/src/nice.c b/src/nice.c index 520821464a..814316c98f 100644 --- a/src/nice.c +++ b/src/nice.c @@ -35,7 +35,6 @@ #include "error.h" #include "long-options.h" -#include "posixver.h" #include "xstrtol.h" /* The official name of this program (e.g., no `g' prefix). */ @@ -118,8 +117,7 @@ main (int argc, char **argv) { char const *s = argv[i]; - if (s[0] == '-' && ISDIGIT (s[1 + (s[1] == '-' || s[1] == '+')]) - && posix2_version () < 200112) + if (s[0] == '-' && ISDIGIT (s[1 + (s[1] == '-' || s[1] == '+')])) { adjustment_given = s + 1; ++i;