Home | History | Annotate | Download | only in lsb

Lines Matching defs:first

1 /* seq.c - Count from first to last, by increment.
14 usage: seq [-w|-f fmt_str] [-s sep_str] [first] [increment] last
16 Count from first to last, by increment. Omitted arguments default
17 to 1. Two arguments are used as first and last. Arguments can be
60 double first = 1, increment = 1, last, dd;
66 case 2: first = parsef(*toys.optargs);
79 dd = (double []){first, increment, last}[i];
85 // Other implementations output nothing if increment is 0 and first > last,
86 // but loop forever if first < last or even first == last. We output
93 dd = first+i*increment;