summaryrefslogtreecommitdiff
path: root/src/nice.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-04-26 16:41:59 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-04-26 16:41:59 +0000
commitc6318338140fe1b5ce7682bf6b04121866fd0d0e (patch)
treec4b1e2f75ed021f5c776fbac993d1a7fc5107ba6 /src/nice.c
parentf9118c1c2e35bdac682e43329becc12947e75d8e (diff)
downloadcoreutils-c6318338140fe1b5ce7682bf6b04121866fd0d0e.tar.xz
Remove posixver.h and its uses.
(main): Always support -NUM option.
Diffstat (limited to 'src/nice.c')
-rw-r--r--src/nice.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nice.c b/src/nice.c
index 520821464..814316c98 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;