History log of /openbsd-current/usr.bin/seq/seq.c
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1.8 13-Jun-2023 millert

Remove debug info inadvertantly left in the last commit.


# 1.7 12-Jun-2023 millert

seq: fix check for rounding error/truncation
We need to compare the printable version of the last value displayed,
not the floating point representation. Otherwise, we may print the
last value twice. OK deraadt@


Revision tags: OPENBSD_7_1_BASE OPENBSD_7_2_BASE OPENBSD_7_3_BASE
# 1.6 25-Feb-2022 tb

fix indent and other minor KNF nits


# 1.5 22-Feb-2022 tb

whitespace


# 1.4 22-Feb-2022 tb

Check asprintf() return to avoid crashing in strcmp().

ok deraadt millert


# 1.3 22-Feb-2022 rob

Pledge stdio.
Ok millert@


# 1.2 22-Feb-2022 rob

Remove -v option from usage.
Ok millert@


# 1.1 22-Feb-2022 millert

Add a seq(1) command, similar to what is present in GNU and Plan9.
Adapted from the NetBSD version with some changes from FreeBSD.
OK gnezdo@