From c6318338140fe1b5ce7682bf6b04121866fd0d0e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 26 Apr 2005 16:41:59 +0000 Subject: [PATCH] Remove posixver.h and its uses. (main): Always support -NUM option. --- src/nice.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; -- 2.47.3