1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-18 01:18:51 +02:00

Remove posixver.h and its uses.

(main): Always support -NUM option.
This commit is contained in:
Paul Eggert
2005-04-26 16:41:59 +00:00
parent f9118c1c2e
commit c631833814
+1 -3
View File
@@ -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;