* src/nproc.c (main): Allow --ignore arg to exceed 2**64.
** Improvements
- 'head -c NUM', 'head -n NUM' and 'nl -l NUM' no longer fail merely
- because NUM stands for 2**64 or more.
+ 'head -c NUM', 'head -n NUM', 'nl -l NUM' and 'nproc --ignore NUM'
+ no longer fail merely because NUM stands for 2**64 or more.
sort operates more efficiently when used on pseudo files with
an apparent size of 0, like those in /proc.
break;
case IGNORE_OPTION:
- ignore = xdectoumax (optarg, 0, ULONG_MAX, "", _("invalid number"),0);
+ ignore = xnumtoumax (optarg, 10, 0, ULONG_MAX, "",
+ _("invalid number"), 0, XTOINT_MAX_QUIET);
break;
default: